fromCountry static method

CountryModel fromCountry(
  1. Country country
)

Implementation

static CountryModel fromCountry(Country country) {
  final spec = kCountryFormatOverrides[country.countryCode] ??
      PhoneFormatSpec.generic(
        example: country.example.isNotEmpty ? country.example : '1234567890',
      );
  return CountryModel._(country, spec);
}