Country constructor

Country({
  1. int? id,
  2. String? name,
  3. String? iso3,
  4. String? iso2,
  5. String? numericCode,
  6. String? phoneCode,
  7. String? capital,
  8. String? currency,
  9. String? currencyName,
  10. String? currencySymbol,
  11. String? tld,
  12. String? native,
  13. String? region,
  14. String? subregion,
  15. List<Timezone>? timezones,
  16. Translations? translations,
  17. String? latitude,
  18. String? longitude,
  19. String? emoji,
  20. String? emojiU,
})

Implementation

Country({
  this.id,
  this.name,
  this.iso3,
  this.iso2,
  this.numericCode,
  this.phoneCode,
  this.capital,
  this.currency,
  this.currencyName,
  this.currencySymbol,
  this.tld,
  this.native,
  this.region,
  this.subregion,
  this.timezones,
  this.translations,
  this.latitude,
  this.longitude,
  this.emoji,
  this.emojiU,
});