CountryModel constructor

CountryModel({
  1. String? id,
  2. String? iso2Code,
  3. String? name,
  4. Region? region,
  5. Adminregion? adminregion,
  6. IncomeLevel? incomeLevel,
  7. LendingType? lendingType,
  8. String? capitalCity,
  9. String? longitude,
  10. String? latitude,
})

Implementation

CountryModel({
    this.id,
    this.iso2Code,
    this.name,
    this.region,
    this.adminregion,
    this.incomeLevel,
    this.lendingType,
    this.capitalCity,
    this.longitude,
    this.latitude,});