select<State, Model> method

Stream<Model> select<State, Model>()

Implementation

Stream<Model> select<State, Model>() {
  return _store.map<Model>((dic) => dic[State]).distinct();
}