useUndoHistoryController function

UndoHistoryController useUndoHistoryController({
  1. UndoHistoryValue? value,
})

Implementation

UndoHistoryController useUndoHistoryController({UndoHistoryValue? value}) {
  return useChangeNotifier(() => UndoHistoryController(value: value));
}