Country constructor

Country({
  1. int? id,
  2. String? name,
  3. String? isoCode,
  4. String? countryIcon,
})

Returns a new Country instance.

Implementation

Country({
  this.id,
  this.name,
  this.isoCode,
  this.countryIcon,
});