MmCreateUserRequest constructor

MmCreateUserRequest({
  1. required String email,
  2. required String username,
  3. String? firstName,
  4. String? lastName,
  5. String? nickname,
  6. String? authData,
  7. String? authService,
  8. String? password,
  9. String? locale,
  10. Map? props,
  11. MmUserNotifyProps? notifyProps,
})

Returns a new MmCreateUserRequest instance.

Implementation

MmCreateUserRequest({
  required this.email,
  required this.username,
  this.firstName,
  this.lastName,
  this.nickname,
  this.authData,
  this.authService,
  this.password,
  this.locale,
  this.props,
  this.notifyProps,
});