getCountryName static method

String? getCountryName(
  1. String code
)

Get country name from code

Implementation

static String? getCountryName(String code) {
  return countryMapping[code.toUpperCase()];
}