redo

void redo()

Go forward one state in history.

Implementation

void redo() {
  if (!canRedo) return;
  _currentIndex++;
  _notifyStore();
}