getCountryByIsoCode static method

Country getCountryByIsoCode(
  1. String isoCode
)

Implementation

static Country getCountryByIsoCode(String isoCode) {
  try {
    return countryList.firstWhere(
      (country) => country.isoCode!.toLowerCase() == isoCode.toLowerCase(),
    );
  } catch (error) {
    throw Exception("The initialValue provided is not a supported iso code!");
  }
}