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> -
Available on Stream<
Combines the latest values from this stream with the latest values fromT> , provided by the CombineLatest extensionother
usingcombine
. -
combineLatestAll(
Iterable< Stream< others) → Stream<T> >List< T> > -
Available on Stream<
Combine the latest value emitted from the source stream with the latest values emitted fromT> , provided by the CombineLatest extensionothers
.