AddressBody constructor

AddressBody({
  1. String? country,
  2. String? state,
  3. String? city,
  4. String? district,
  5. String? neighborhood,
  6. String? street,
  7. String? buildingNo,
  8. String? doorNo,
  9. String? zipCode,
  10. double? latitude,
  11. double? longitude,
  12. String? openAddress,
  13. String? id,
})

Implementation

AddressBody({
  this.country,
  this.state,
  this.city,
  this.district,
  this.neighborhood,
  this.street,
  this.buildingNo,
  this.doorNo,
  this.zipCode,
  this.latitude,
  this.longitude,
  this.openAddress,
  this.id,
});