getCountry static method

Country? getCountry(
  1. String countryCode
)

Implementation

static Country? getCountry(String countryCode) {
  return _instance!.countriesMap[countryCode];
}