maybeOf<T> static method
Implementation
static T? maybeOf<T>(BuildContext context) {
return context.dependOnInheritedWidgetOfExactType<NiceProvider<T>>()?.value;
}
static T? maybeOf<T>(BuildContext context) {
return context.dependOnInheritedWidgetOfExactType<NiceProvider<T>>()?.value;
}