ResetPasswordResult constructor

ResetPasswordResult({
  1. required bool isPasswordReset,
  2. required ResetPasswordStep nextStep,
})

Implementation

ResetPasswordResult({required this.isPasswordReset, required this.nextStep}) {
  this.isPasswordReset = isPasswordReset;
  this.nextStep = nextStep;
}