AddressBodyDataModel constructor

AddressBodyDataModel({
  1. String? title,
  2. String? name,
  3. String? surname,
  4. String? phoneNumber,
  5. String? companyName,
  6. String? taxNumber,
  7. String? taxOffice,
  8. String? country,
  9. String? state,
  10. String? city,
  11. String? district,
  12. String? neighborhood,
  13. String? street,
  14. String? openAddress,
  15. String? buildingNo,
  16. String? doorNo,
  17. String? zipCode,
  18. double? latitude,
  19. 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,
});