includeFailed method

OperationsRequestBuilder includeFailed (
  1. bool value
)

Adds a parameter defining whether to include operations of failed transactions. By default only operations of successful transactions are returned.

Implementation

OperationsRequestBuilder includeFailed(bool value) {
  value = checkNotNull(value, "value cannot be null");
  queryParameters.addAll({"include_failed": value.toString()});
  return this;
}