useUndoHistoryController function

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

Implementation

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