byAlpha3Code static method

Country byAlpha3Code(
  1. String code
)

gets country by Alpha3 code for more see : https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3

Implementation

static Country byAlpha3Code(String code) {
  Country country = _countryData.countries.where((c) => c.alpha3Code == code).first;
  return country;
}