SignUpRequest constructor

SignUpRequest({
  1. required String name,
  2. required String phone,
  3. required String taxId,
  4. required String jurAddress,
  5. required String jurStatus,
  6. required String registrationDate,
  7. required String registrationAuthority,
  8. required String password,
  9. required String passwordConfirm,
  10. required String token,
  11. String? email,
})

Implementation

SignUpRequest({
  required this.name,
  required this.phone,
  required this.taxId,
  required this.jurAddress,
  required this.jurStatus,
  required this.registrationDate,
  required this.registrationAuthority,
  required this.password,
  required this.passwordConfirm,
  required this.token,
  this.email,
});