Country constructor

Country({
  1. String? phoneCode,
  2. String? countryCode,
  3. int? e164Sc,
  4. bool? geographic,
  5. int? level,
  6. String? name,
  7. String? nameLocalized,
  8. String? example,
  9. String? displayName,
  10. String? fullExampleWithPlusSign,
  11. String? displayNameNoCountryCode,
  12. String? e164Key,
  13. int? phoneNumberLength,
})

Implementation

Country({
  this.phoneCode,
  this.countryCode,
  this.e164Sc,
  this.geographic,
  this.level,
  this.name,
  this.nameLocalized,
  this.example,
  this.displayName,
  this.fullExampleWithPlusSign,
  this.displayNameNoCountryCode,
  this.e164Key,
  this.phoneNumberLength,
});