DirectoryTreeStateProvider constructor

const DirectoryTreeStateProvider({
  1. Key? key,
  2. required DirectoryTreeStateNotifier notifier,
  3. required Widget child,
})

Constructs a DirectoryTreeStateProvider with the given notifier and child widget.

Implementation

const DirectoryTreeStateProvider({
  super.key,
  required DirectoryTreeStateNotifier super.notifier,
  required super.child,
});