ProfileDTO constructor
ProfileDTO({
- String? id,
- String? createdAt,
- String? updatedAt,
- bool? isActive,
- bool? isDeleted,
- String? name,
- String? surname,
- bool? isVerified,
- String? phoneNumber,
- String? birthday,
- String? gender,
- String? companyName,
- String? taxOffice,
- String? taxNumber,
- String? fullName,
- UserDTO? user,
- String? socialSecurityNo,
- PhotoDTO? photo,
Implementation
ProfileDTO({
super.id,
super.createdAt,
super.updatedAt,
super.isActive,
super.isDeleted,
this.name,
this.surname,
this.isVerified,
this.phoneNumber,
this.birthday,
this.gender,
this.companyName,
this.taxOffice,
this.taxNumber,
this.fullName,
this.user,
this.socialSecurityNo,
this.photo,
});