AddressDTO constructor
AddressDTO({
- String? id,
- String? createdAt,
- String? updatedAt,
- bool? isActive,
- bool? isDeleted,
- 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? buildingNo,
- String? doorNo,
- String? zipCode,
- double? latitude,
- double? longitude,
- String? openAddress,
Implementation
AddressDTO({
super.id,
super.createdAt,
super.updatedAt,
super.isActive,
super.isDeleted,
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.buildingNo,
this.doorNo,
this.zipCode,
this.latitude,
this.longitude,
this.openAddress,
});