select<T> function
- String stateName
This is a helper function of store.select(String stateName).
Example
final _counter$ =select('counter')
Implementation
Stream<T> select<T>(String stateName) {
try {
return _store.select<T>(stateName);
} catch (_) {
throw "select() function should not work until you exposeApiGlobally:true inside createStore() function.";
}
}