ProfileUpdateBodyDataModel constructor

ProfileUpdateBodyDataModel({
  1. String? email,
  2. String? password,
  3. String? name,
  4. String? surname,
  5. String? phoneNumber,
  6. String? birthday,
  7. Gender? gender,
  8. String? companyName,
  9. String? taxOffice,
  10. String? taxNumber,
  11. File? photo,
})

Implementation

ProfileUpdateBodyDataModel({
  this.email,
  this.password,
  this.name,
  this.surname,
  this.phoneNumber,
  this.birthday,
  this.gender,
  this.companyName,
  this.taxOffice,
  this.taxNumber,
  this.photo,
});