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) {
return _store.select<T>(stateName);
}