clearRedoQueue method

void clearRedoQueue()
inherited

Removes all history items that happened after the current undo position.

Internally this is used whenever a change occurs, but you might want to use it for something else.

Implementation

void clearRedoQueue() {
  _internalClearRedoQueue();
  temporaryValue = value;
}