UndoRedoPersistState<T> constructor

UndoRedoPersistState<T>({
  1. required int undoStackLength,
  2. required PersistState<T>? persistanceProvider,
})

Undo-redo and persist state

Implementation

UndoRedoPersistState({
  required this.undoStackLength,
  required this.persistanceProvider,
});