findLastOrDefault method
Emits the last item of this Observable matching the predicate
, or
the provided default value
otherwise.
Implementation
Observable<T> findLastOrDefault(Predicate1<T> predicate, T value) =>
findLastOrElse(predicate, constantFunction0(value));