of<T> static method
Look up a signal by its type
Implementation
static Signal<T> of<T>(BuildContext context, {bool listen = true}) {
return InheritedSignalProvider.of<SignalProvider<T>>(
context,
listen: listen,
)!
.instance;
}