ExtrasCountry constructor

ExtrasCountry({
  1. List<PurpleRegion>? regions,
  2. int? id,
  3. String? name,
  4. String? code,
  5. String? continent,
})

Implementation

ExtrasCountry({
  this.regions,
  this.id,
  this.name,
  this.code,
  this.continent,
});