Address constructor
Address({
- dynamic addressType,
- String? locationId1,
- String? locationId2,
- String? locationId3,
- String? locationId4,
- int? postalCode,
- String? streetName,
- String? streetNameNe,
- String? building,
- String? buildingNe,
- String? locationName1,
- String? locationName2,
- String? locationName3,
- String? locationName4,
- String? lattitude,
- 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,
});