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