RedoUndoHistory constructor

RedoUndoHistory({
  1. required VoidCallback undo,
  2. required VoidCallback redo,
})

Implementation

RedoUndoHistory({
  required this.undo,
  required this.redo,
});