byAlpha3Code static method

Country byAlpha3Code(
  1. String code
)

Implementation

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