clearQueue method

void clearQueue()
inherited

Removes all history items from the queue.

Implementation

void clearQueue() {
  _undoHistory = [];
  _undoIndex = 0;
  temporaryValue = value;
}