hasFlagIcon static method

bool hasFlagIcon(
  1. String countryId
)

Implementation

static bool hasFlagIcon(String countryId) {
  countryId = countryId.toLowerCase();
  return !_missingFlagCountryIds.contains(countryId);
}