DeviceAddressV2 constructor

const DeviceAddressV2({
  1. double? lat,
  2. double? long,
  3. String? streetAddress,
  4. String? city,
  5. String? state,
  6. String? postalCode,
})

Implementation

const DeviceAddressV2({
  this.lat,
  this.long,
  this.streetAddress,
  this.city,
  this.state,
  this.postalCode,
});