lastOrElse method
Emits the last item of this Observable, or evaluate the provided
callback
otherwise.
Implementation
Observable<T> lastOrElse(Map0<T> callback) =>
findLastOrElse(constantFunction1(true), callback);
Emits the last item of this Observable, or evaluate the provided
callback
otherwise.
Observable<T> lastOrElse(Map0<T> callback) =>
findLastOrElse(constantFunction1(true), callback);