Country constructor

Country({
  1. String? iso,
  2. String? name,
  3. String? printableName,
  4. String? iso3,
  5. int? numcode,
  6. int? available,
  7. int? phoneAvailable,
  8. int? eventAvailable,
  9. int? missionAvailable,
  10. String? phoneCode,
})

Implementation

Country(
    {this.iso,
    this.name,
    this.printableName,
    this.iso3,
    this.numcode,
    this.available,
    this.phoneAvailable,
    this.eventAvailable,
    this.missionAvailable,
    this.phoneCode});