redo method

void redo()
inherited

Proceeds to the next value in the history.

Implementation

void redo() {
  if (canRedo && allowOperations) {
    temporaryValue = transformHistoryValue(_undoHistory[--_undoIndex], value);
  }
}