Address constructor

Address({
  1. dynamic addressType,
  2. String? locationId1,
  3. String? locationId2,
  4. String? locationId3,
  5. dynamic locationId4,
  6. dynamic multiLocationId1,
  7. dynamic multiLocationId2,
  8. dynamic multiLocationId3,
  9. dynamic multiLocationId4,
  10. int? postalCode,
  11. String? streetName,
  12. dynamic streetNameNe,
  13. String? building,
  14. String? buildingNe,
  15. String? locationName1,
  16. String? locationName2,
  17. String? locationName3,
  18. String? locationName4,
  19. String? lattitude,
  20. String? longitude,
  21. dynamic id,
  22. bool? defaultAddress,
  23. dynamic addressIdentifier,
  24. dynamic rootLocationId,
})

Implementation

Address({
  this.addressType,
  this.locationId1,
  this.locationId2,
  this.locationId3,
  this.locationId4,
  this.multiLocationId1,
  this.multiLocationId2,
  this.multiLocationId3,
  this.multiLocationId4,
  this.postalCode,
  this.streetName,
  this.streetNameNe,
  this.building,
  this.buildingNe,
  this.locationName1,
  this.locationName2,
  this.locationName3,
  this.locationName4,
  this.lattitude,
  this.longitude,
  this.id,
  this.defaultAddress,
  this.addressIdentifier,
  this.rootLocationId,
});