getAllCountryNames static method

List<String> getAllCountryNames()

Get all available country names

Implementation

static List<String> getAllCountryNames() {
  return countryMapping.values.toList()..sort();
}