byFlag static method

Country byFlag(
  1. String flag
)

gets country by flag emoji icon

Implementation

static Country byFlag(String flag) {
  Country country = _countryData.countries.where((c) => c.flagIcon == flag).first;
  return country;
}