City constructor

const City(
  1. String name, [
  2. String? area,
  3. String? elevation,
  4. String? population,
  5. String? timeZone,
  6. String? postalCode,
])

Implementation

const City(
  this.name, [
  this.area,
  this.elevation,
  this.population,
  this.timeZone,
  this.postalCode,
]);