ChangePasswordRequest constructor

ChangePasswordRequest(
  1. {String? currentPassword,
  2. String? password,
  3. String? passwordConfirmation}
)

Implementation

ChangePasswordRequest({
  this.currentPassword,
  this.password,
  this.passwordConfirmation,
});