HistoryChanged<T> constructor

HistoryChanged<T>({
  1. required List<T> current,
  2. required bool canUndo,
  3. required bool canRedo,
  4. required int historyDepth,
})

Implementation

HistoryChanged({
  required this.current,
  required this.canUndo,
  required this.canRedo,
  required this.historyDepth,
});