CountryModel constructor

const CountryModel({
  1. String? name,
  2. String? code,
  3. String? flag,
  4. String? shortName,
  5. String? currencyName,
  6. String? currencySymbol,
  7. int? phoneNumberLength,
  8. List<StateModel>? states,
})

Implementation

const CountryModel({
  this.name,
  this.code,
  this.flag,
  this.shortName,
  this.currencyName,
  this.currencySymbol,
  this.phoneNumberLength,
  this.states,
});