select<T> method

Stream<T> select <T>(String stateName)

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);
}