Address constructor

Address({
  1. double? elevation,
  2. String? timezone,
  3. int? geoNumber,
  4. int? streetNumber,
  5. String? streetAddress,
  6. String? city,
  7. String? countryCode,
  8. String? countryName,
  9. String? region,
  10. String? postal,
  11. double? distance,
})

Implementation

Address(
    {this.elevation,
    this.timezone,
    this.geoNumber,
    this.streetNumber,
    this.streetAddress,
    this.city,
    this.countryCode,
    this.countryName,
    this.region,
    this.postal,
    this.distance});