Country constructor

Country({
  1. int? id,
  2. String? name,
  3. String? nameAr,
  4. String? emoji,
  5. String? emojiU,
  6. List<Region>? state,
  7. String? iso2,
  8. String? iso3,
  9. String? frenchname,
  10. int? countrycode,
})

Implementation

Country({
  this.id,
  this.name,
  this.nameAr,
  this.emoji,
  this.emojiU,
  this.state,
  this.iso2,
  this.iso3,
  this.frenchname,
  this.countrycode,
});