getCountryName method
Get country name by country code
Returns the localized name for the given country code If the country code is not found, returns the code itself
Implementation
@override
String getCountryName(String countryCode) {
return _countryNames[countryCode] ?? countryCode;
}