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