CombineLatest<T> extension
Utilities to combine events from multiple streams through a callback or into a list.
- on
-
- Stream<
T>
- Stream<
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
usingcombine
. -
combineLatestAll(
Iterable< Stream< others) → Stream<T> >List< T> > -
Combine the latest value emitted from the source stream with the latest
values emitted from
others
.