AddressDTO constructor

const AddressDTO({
  1. double? lat,
  2. double? long,
  3. String? address1,
  4. String? address2,
  5. String? city,
  6. String? state,
  7. String? postalCode,
  8. String? country,
})

Implementation

const AddressDTO({
  this.lat,
  this.long,
  this.address1,
  this.address2,
  this.city,
  this.state,
  this.postalCode,
  this.country,
});