fromCode static method

CountryInfo fromCode(
  1. String code
)

Implementation

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