AddressBodyDataModel constructor
AddressBodyDataModel({
- String? title,
- String? name,
- String? surname,
- String? phoneNumber,
- String? companyName,
- String? taxNumber,
- String? taxOffice,
- String? country,
- String? state,
- String? city,
- String? district,
- String? neighborhood,
- String? street,
- String? openAddress,
- String? buildingNo,
- String? doorNo,
- String? zipCode,
- double? latitude,
- double? longitude,
Implementation
AddressBodyDataModel({
this.title,
this.name,
this.surname,
this.phoneNumber,
this.companyName,
this.taxNumber,
this.taxOffice,
this.country,
this.state,
this.city,
this.district,
this.neighborhood,
this.street,
this.openAddress,
this.buildingNo,
this.doorNo,
this.zipCode,
this.latitude,
this.longitude,
});