FluxTransformer.broadcast constructor
FluxTransformer.broadcast({
- bool sync = false,
- bool? cancelOnError,
- 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);
}