of<T> static method
Implementation
static T of<T>(BuildContext context) {
final provider =
context.dependOnInheritedWidgetOfExactType<PlusProviderInherited<T>>();
return provider!.provider;
}
static T of<T>(BuildContext context) {
final provider =
context.dependOnInheritedWidgetOfExactType<PlusProviderInherited<T>>();
return provider!.provider;
}