resetWebAuthorization method

Future<Result<Boolean>> resetWebAuthorization({
  1. required int hash,
})

Reset Web Authorization.

ID: 2d01b9ef.

Implementation

Future<Result<Boolean>> resetWebAuthorization({
  required int hash,
}) async {
  // Preparing the request.
  final request = AccountResetWebAuthorization(
    hash: hash,
  );

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

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