lastOrDefault method
Emits the last item of this Observable, or the provided default value
otherwise.
Implementation
Observable<T> lastOrDefault(T value) => lastOrElse(constantFunction0(value));
Emits the last item of this Observable, or the provided default value
otherwise.
Observable<T> lastOrDefault(T value) => lastOrElse(constantFunction0(value));