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