NUIAuthSignUpReq constructor

NUIAuthSignUpReq({
  1. required String username,
  2. required String password,
  3. required String email,
  4. String? mobileNo,
  5. String? name,
  6. String? displayName,
  7. int? age,
  8. String? gender,
  9. String? recoveryEmail,
  10. String? provider,
})

Implementation

NUIAuthSignUpReq({
  required this.username,
  required this.password,
  required this.email,
  this.mobileNo,
  this.name,
  this.displayName,
  this.age,
  this.gender,
  this.recoveryEmail,
  this.provider
});