UpdateUser constructor

UpdateUser({
  1. String? firstName,
  2. String? lastName,
  3. String? password,
  4. bool? enabled,
  5. String? notificationToken,
})

Returns a new UpdateUser instance.

Implementation

UpdateUser({
  this.firstName,
  this.lastName,
  this.password,
  this.enabled,
  this.notificationToken,
});