findLast method
Emits the last item of this Observable matching the predicate
, or
emits an TooFewError otherwise.
Implementation
Observable<T> findLast(Predicate1<T> predicate) =>
findLastOrElse(predicate, throwFunction0(TooFewError()));
Emits the last item of this Observable matching the predicate
, or
emits an TooFewError otherwise.
Observable<T> findLast(Predicate1<T> predicate) =>
findLastOrElse(predicate, throwFunction0(TooFewError()));