Address constructor

Address({
  1. dynamic addressType,
  2. String? locationId1,
  3. String? locationId2,
  4. String? locationId3,
  5. String? locationId4,
  6. int? postalCode,
  7. String? streetName,
  8. String? streetNameNe,
  9. String? building,
  10. String? buildingNe,
  11. String? locationName1,
  12. String? locationName2,
  13. String? locationName3,
  14. String? locationName4,
  15. String? lattitude,
  16. String? longitude,
})

Implementation

Address({
  this.addressType,
  this.locationId1,
  this.locationId2,
  this.locationId3,
  this.locationId4,
  this.postalCode,
  this.streetName,
  this.streetNameNe,
  this.building,
  this.buildingNe,
  this.locationName1,
  this.locationName2,
  this.locationName3,
  this.locationName4,
  this.lattitude,
  this.longitude,
});