TreeScope<T> constructor

const TreeScope<T>({
  1. Key? key,
  2. required TreeController<T> controller,
  3. required Widget child,
})

Implementation

const TreeScope({super.key, required TreeController<T> controller, required super.child})
    : super(notifier: controller);