select<T> method
This method takes a single param String stateName and return Stream/Stream
Example
store.select('counter')
Implementation
Stream<T> select<T>(String stateName) {
return _storeHelper.select<T>(stateName);
}
This method takes a single param String stateName and return Stream/Stream
Example
store.select('counter')
Stream<T> select<T>(String stateName) {
return _storeHelper.select<T>(stateName);
}