byCode static method

Country byCode(
  1. String code
)

Implementation

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