CountryCode.fromCountryCode constructor
CountryCode.fromCountryCode(
- String countryCode
Implementation
factory CountryCode.fromCountryCode(String countryCode) {
final Map<String, String>? jsonCode = codes.firstWhereOrNull(
(code) => code['code'] == countryCode,
);
return CountryCode.fromJson(jsonCode!);
}