declinePasswordReset method

Future<Result<Boolean>> declinePasswordReset()

Decline Password Reset.

ID: 4c9409f6.

Implementation

Future<Result<Boolean>> declinePasswordReset() async {
  // Preparing the request.
  final request = AccountDeclinePasswordReset();

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<Boolean>();
}