FluxTransformer.broadcast constructor

FluxTransformer.broadcast({
  1. bool sync = false,
  2. bool? cancelOnError,
  3. FluxResponseMode responseMode = FluxResponseMode.full,
})

Implementation

FluxTransformer.broadcast(
    {bool sync = false,
    this.cancelOnError,
    this.responseMode = FluxResponseMode.full}) {
  _controller = StreamController<FluxRecord>.broadcast(
      onListen: _onListen, onCancel: _onCancel, sync: sync);
}