StreamBackedEmitter<T> constructor
StreamBackedEmitter<T> ({})
Implementation
StreamBackedEmitter(
{List<RxValue<T>> emitRxValues = const [],
List<Stream<T>> emitStreams = const [],
Stream<T>? emitStream,
RxValue<T>? emitRxValue}) {
this.emitRxValues(emitRxValues);
this.emitStreams(emitStreams);
if (emitRxValue != null) this.emitRxValue(emitRxValue);
if (emitStream != null) this.emitStream(emitStream);
}