Commander( CommanderConfig config, Store<AbstractModel> store, Stream<Request> requestStream)

CommanderConfig config / Store this.store Stream requestStream

Source

Commander(this.config, this.store, Stream<Request> requestStream) {
 requestStream.listen((Request a) => exec(a));
 store.apply();
  }