MmPatchUserRequest constructor

MmPatchUserRequest({
  1. String? email,
  2. String? username,
  3. String? firstName,
  4. String? lastName,
  5. String? nickname,
  6. String? locale,
  7. String? position,
  8. Map? props,
  9. MmUserNotifyProps? notifyProps,
})

Returns a new MmPatchUserRequest instance.

Implementation

MmPatchUserRequest({
  this.email,
  this.username,
  this.firstName,
  this.lastName,
  this.nickname,
  this.locale,
  this.position,
  this.props,
  this.notifyProps,
});