lastOrDefault method

Observable<T> lastOrDefault(
  1. T value
)

Emits the last item of this Observable, or the provided default value otherwise.

Implementation

Observable<T> lastOrDefault(T value) => lastOrElse(constantFunction0(value));