maybeOf<T> static method
Implementation
static SuggestionsController<T>? maybeOf<T>(BuildContext context) {
return context
.dependOnInheritedWidgetOfExactType<SuggestionsControllerProvider<T>>()
?.notifier;
}
static SuggestionsController<T>? maybeOf<T>(BuildContext context) {
return context
.dependOnInheritedWidgetOfExactType<SuggestionsControllerProvider<T>>()
?.notifier;
}