LocationResponseValue constructor

const LocationResponseValue({
  1. String? address,
  2. String? city,
  3. String? state,
  4. String? country,
  5. String? postalCode,
  6. double? lat,
  7. double? lng,
  8. String? formattedAddress,
})

Implementation

const LocationResponseValue({
  this.address,
  this.city,
  this.state,
  this.country,
  this.postalCode,
  this.lat,
  this.lng,
  this.formattedAddress,
});