CreateUserRequestDataAttributes constructor

CreateUserRequestDataAttributes({
  1. String? firstName,
  2. String? lastName,
  3. required String email,
  4. String? password,
  5. Object? metadata,
})

Returns a new CreateUserRequestDataAttributes instance.

Implementation

CreateUserRequestDataAttributes({
  this.firstName,
  this.lastName,
  required this.email,
  this.password,
  this.metadata,
});