fromCode static method
Implementation
static CountryInfo fromCode(String code) {
return _countries[code.toUpperCase()] ??
const CountryInfo(
name: 'Unknown',
code: 'N/A',
currency: 'N/A',
phoneCode: 'N/A',
);
}