StreamBeacon<T> constructor

StreamBeacon<T>(
  1. Stream<T> _stream, {
  2. bool cancelOnError = false,
})

Implementation

StreamBeacon(
  this._stream, {
  this.cancelOnError = false,
}) : super(AsyncLoading()) {
  _init();
}