Location constructor

Location({
  1. String city,
  2. String country,
  3. String displayString,
  4. num latitude,
  5. num longitude,
  6. String region,
  7. String zipcode,
})

Implementation

Location(
    {this.city,
    this.country,
    this.displayString,
    this.latitude,
    this.longitude,
    this.region,
    this.zipcode});