getCountryName static method

String? getCountryName(
  1. String alpha2Code
)

Implementation

static String? getCountryName(String alpha2Code) {
  final invertedMap = Constants.ALL_COUNTRIES_ALPHA_2
      .map((key, value) => MapEntry(value, key));
  return invertedMap[alpha2Code];
}