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