AddressDTO constructor

AddressDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? country,
  7. String? state,
  8. String? city,
  9. String? district,
  10. String? neighborhood,
  11. String? street,
  12. String? buildingNo,
  13. String? doorNo,
  14. String? zipCode,
  15. double? latitude,
  16. double? longitude,
  17. String? openAddress,
})

Implementation

AddressDTO({
  super.id,
  super.createdAt,
  super.updatedAt,
  super.isActive,
  super.isDeleted,
  this.country,
  this.state,
  this.city,
  this.district,
  this.neighborhood,
  this.street,
  this.buildingNo,
  this.doorNo,
  this.zipCode,
  this.latitude,
  this.longitude,
  this.openAddress,
});