remove method

void remove(
  1. _TOperation<T> operation
)

Removes a specific operation from the queue.

Implementation

void remove(_TOperation<T> operation) {
  _operations.remove(operation);
}