CommandStreamReducer.broadcast(T state, { bool sync: false, bool cancelOnError })

Source

CommandStreamReducer.broadcast(this.state,
    {bool sync: false, this.cancelOnError}) {
  _controller = new StreamController<T>.broadcast(
      onListen: _onListen, onCancel: _onCancel, sync: sync);
}