Store constructor

Store(List<BaseState> states)

Implementation

Store(List<BaseState> states) {
  _dispatcher = Dispatcher();
  _actions = Actions(_dispatcher);
  _storeHelper = StoreHelper(_dispatcher, states);
  _subs = Map<String, StreamSubscription<Action>>();
  _effSub = EffectSubscription(_dispatcher);
}