CountryModel constructor
CountryModel({
- String? id,
- String? iso2Code,
- String? name,
- Region? region,
- Adminregion? adminregion,
- IncomeLevel? incomeLevel,
- LendingType? lendingType,
- String? capitalCity,
- String? longitude,
- String? latitude,
Implementation
CountryModel({
this.id,
this.iso2Code,
this.name,
this.region,
this.adminregion,
this.incomeLevel,
this.lendingType,
this.capitalCity,
this.longitude,
this.latitude,});