redo method

void redo()

重做

Implementation

void redo() {
  if (_currentIndex < _history.length) {
    _currentIndex = _currentIndex + 1;
    _refreshDeep();
  }
}