defaultCountry property

CountriesModel get defaultCountry

A static method to get a default country model.

Returns a CountriesModel instance representing the default country, which is the USA.

Implementation

static CountriesModel get defaultCountry {
  return CountriesModel.fromJson({
    "id": "0235",
    "name": "USA",
    "flag": "🇺🇸",
    "code": "US",
    "dial_code": "+1",
    "pattern": "### ### ####",
    "limit": 17
  });
}