undo method
void
undo()
inherited
Returns to the previous value in the history.
Implementation
void undo() {
if (canUndo && allowOperations) {
temporaryValue = transformHistoryValue(_undoHistory[++_undoIndex], value);
}
}