Country constructor

Country({
  1. String? isoCode,
  2. String? iso3Code,
  3. String? phoneCode,
  4. String? name,
  5. String? currencyCode,
  6. String? currencyName,
})

Implementation

Country({
  this.isoCode,
  this.iso3Code,
  this.phoneCode,
  this.name,
  this.currencyCode,
  this.currencyName,
});