map<R> method
Applies the given projection function transform
to each value emitted by
this Observable, and emits the resulting value.
Implementation
Observable<R> map<R>(Map1<T, R> transform) =>
MapObservable<T, R>(this, transform);