ProfileDTO constructor

ProfileDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? name,
  7. String? surname,
  8. bool? isVerified,
  9. String? phoneNumber,
  10. String? birthday,
  11. String? gender,
  12. String? companyName,
  13. String? taxOffice,
  14. String? taxNumber,
  15. String? fullName,
  16. UserDTO? user,
  17. String? socialSecurityNo,
  18. 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,
});