CreateUserRequest constructor

CreateUserRequest({
  1. String? givenName,
  2. String? familyName,
  3. String? email,
  4. String? password,
})

Implementation

CreateUserRequest({
  this.givenName,
  this.familyName,
  this.email,
  this.password,
});