redo method

void redo()

Implementation

void redo() {
  if (_currentHistoryIndex < _history.length - 1) {
    _currentHistoryIndex++;
    _setValue(_history[_currentHistoryIndex]);
  }
}