resetPasswordResultPending property

ResetPasswordResultPending? resetPasswordResultPending

The password reset request is pending

Implementation

ResetPasswordResultPending? get resetPasswordResultPending {
  if (this is ResetPasswordResultPending) {
    return this as ResetPasswordResultPending;
  }
  return null;
}