where method
Filter items emitted by the source Observable by only emitting those that satisfy a specified predicate.
Implementation
Observable<T> where(Predicate1<T> predicate) =>
WhereObservable<T>(this, predicate);
Filter items emitted by the source Observable by only emitting those that satisfy a specified predicate.
Observable<T> where(Predicate1<T> predicate) =>
WhereObservable<T>(this, predicate);