SignUpRequest constructor
SignUpRequest({ - required String name,
- required String phone,
- required String taxId,
- required String jurAddress,
- required String jurStatus,
- required String registrationDate,
- required String registrationAuthority,
- required String password,
- required String passwordConfirm,
- required String token,
- 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,
});