CombineLatest<T> extension

Utilities to combine events from multiple streams through a callback or into a list.

on

Methods

combineLatest<T2, S>(Stream<T2> other, FutureOr<S> combine(T, T2)) Stream<S>
Combines the latest values from this stream with the latest values from other using combine.
combineLatestAll(Iterable<Stream<T>> others) Stream<List<T>>
Combine the latest value emitted from the source stream with the latest values emitted from others.