City constructor

City({
  1. String? countryCode,
  2. String? countryDartId,
  3. String? dartId,
  4. String? kind,
  5. String? metroCode,
  6. String? metroDmaId,
  7. String? name,
  8. String? regionCode,
  9. String? regionDartId,
})

Implementation

City({
  this.countryCode,
  this.countryDartId,
  this.dartId,
  this.kind,
  this.metroCode,
  this.metroDmaId,
  this.name,
  this.regionCode,
  this.regionDartId,
});