mapTo<R> method
Emits a constant value
for each value emitted by this Observable.
Implementation
Observable<R> mapTo<R>(R value) =>
MapObservable<T, R>(this, constantFunction1(value));
Emits a constant value
for each value emitted by this Observable.
Observable<R> mapTo<R>(R value) =>
MapObservable<T, R>(this, constantFunction1(value));