removeAll method
void
removeAll()
Removes all items from the queue that have not thrown a QueueCancelledException It will be removed from the queue if it has not yet been executed.
Implementation
void removeAll() {
_nextCycle.clear();
activeItemTags.clear();
_updateRemainingItems();
}