AddressModel constructor

AddressModel({
  1. String? addressLine1,
  2. String? addressLine2,
  3. String? city,
  4. String? state,
  5. String? locality,
  6. String? country,
  7. String? zipCode,
  8. double? latitude,
  9. double? longitude,
})

Implementation

AddressModel({
  this.addressLine1,
  this.addressLine2,
  this.city,
  this.state,
  this.locality,
  this.country,
  this.zipCode,
  this.latitude,
  this.longitude,
});