RxList<T>.fromStream constructor

RxList<T>.fromStream(
  1. Stream<List<T>> stream, {
  2. required List<T> initial,
  3. void onError(
    1. Object error,
    2. StackTrace stackTrace
    )?,
  4. void onDone()?,
  5. bool? cancelOnError,
})

Implementation

RxList.fromStream(
  super.stream, {
  required super.initial,
  super.onError,
  super.onDone,
  super.cancelOnError,
}) : super.fromStream();