DeviceAddress constructor

const DeviceAddress({
  1. String? streetAddress,
  2. String? city,
  3. String? state,
  4. String? postalCode,
  5. LatLng? coordinates,
  6. String? country,
})

Implementation

const DeviceAddress({
  this.streetAddress,
  this.city,
  this.state,
  this.postalCode,
  this.coordinates,
  this.country,
});