switchMapTo<R> method

Observable<R> switchMapTo<R>(
  1. Observable<R> observable
)

Emits all values from the most recent higher-order observable.

Implementation

Observable<R> switchMapTo<R>(Observable<R> observable) =>
    switchMap<R>(constantFunction1(observable));