redo method

void redo()

Implementation

void redo() {
  if (_redo.isEmpty) return;
  _strokes.add(_redo.removeLast());
  notifyListeners();
}