of<T> static method
Implementation
static TreeController<T>? of<T>(BuildContext context) {
final scope = context.dependOnInheritedWidgetOfExactType<TreeScope<T>>();
return scope?.controller;
}
static TreeController<T>? of<T>(BuildContext context) {
final scope = context.dependOnInheritedWidgetOfExactType<TreeScope<T>>();
return scope?.controller;
}