Continents constructor

Continents({
  1. String? code,
  2. String? name,
  3. List<Country>? countries,
  4. Links? links,
})

Implementation

Continents({
  this.code,
  this.name,
  this.countries,
  this.links,
});