Country constructor

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

Implementation

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