Address constructor

Address({
  1. String? addressLine1,
  2. String? addressLine2,
  3. String? addressLine3,
  4. dynamic street,
  5. dynamic city,
  6. dynamic state,
  7. dynamic country,
  8. String? postalCode,
  9. dynamic locationId1,
  10. dynamic locationId2,
  11. dynamic locationId3,
  12. dynamic locationId4,
  13. dynamic locationId5,
  14. dynamic locationId6,
  15. dynamic locationName1,
  16. dynamic locationName2,
  17. dynamic locationName3,
  18. dynamic locationName4,
  19. dynamic locationName5,
  20. dynamic locationName6,
  21. dynamic addressLineNe1,
  22. dynamic addressLineNe2,
  23. dynamic streetNe,
  24. dynamic cityNe,
  25. dynamic stateNe,
  26. dynamic countryNe,
  27. dynamic postalCodeNe,
  28. dynamic locationNameNe1,
  29. dynamic locationNameNe2,
  30. dynamic locationNameNe3,
  31. dynamic locationNameNe4,
  32. dynamic locationNameNe5,
  33. dynamic locationNameNe6,
  34. dynamic addressType,
  35. dynamic lattitude,
  36. dynamic longitude,
  37. String? fullAddress,
})

Implementation

Address({
  this.addressLine1,
  this.addressLine2,
  this.addressLine3,
  this.street,
  this.city,
  this.state,
  this.country,
  this.postalCode,
  this.locationId1,
  this.locationId2,
  this.locationId3,
  this.locationId4,
  this.locationId5,
  this.locationId6,
  this.locationName1,
  this.locationName2,
  this.locationName3,
  this.locationName4,
  this.locationName5,
  this.locationName6,
  this.addressLineNe1,
  this.addressLineNe2,
  this.streetNe,
  this.cityNe,
  this.stateNe,
  this.countryNe,
  this.postalCodeNe,
  this.locationNameNe1,
  this.locationNameNe2,
  this.locationNameNe3,
  this.locationNameNe4,
  this.locationNameNe5,
  this.locationNameNe6,
  this.addressType,
  this.lattitude,
  this.longitude,
  this.fullAddress,
});