combineLatest<T> function
Combines a list of Observable to an Observable whose values are calculated from the latest values of each of its inputs.
Implementation
Observable<List<T>> combineLatest<T>(Iterable<Observable<T>> iterable,
{Scheduler? scheduler}) =>
iterable.toObservable(scheduler: scheduler).combineLatest();