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 _store.map<T>((dic) => dic[stateName]).distinct();
}