findLastOrElse method
Emits the last item of this Observable matching the predicate
, or
evaluate the provided callback
otherwise.
Implementation
Observable<T> findLastOrElse(Predicate1<T> predicate, Map0<T> callback) =>
LastObservable<T>(this, predicate, callback);