getAllCountryCodes static method

List<String> getAllCountryCodes()

Get all available country codes

Implementation

static List<String> getAllCountryCodes() {
  return countryMapping.keys.toList()..sort();
}