getByCallingCode static method
Implementation
static CountryModel? getByCallingCode(String callingCode,
{List<CountryModel>? allowedCountryList}) {
try {
return (allowedCountryList ?? countryList)
.firstWhere((country) => country.callingCode == callingCode);
} catch (e) {
return null;
}
}