flatMapSingle<R> method
Likes flatMap, but returns a Single.
This function is an alias to exhaustMapSingle operator.
Implementation
Single<R> flatMapSingle<R>(Single<R> Function(T) transform) =>
exhaustMapSingle(transform);
Likes flatMap, but returns a Single.
This function is an alias to exhaustMapSingle operator.
Single<R> flatMapSingle<R>(Single<R> Function(T) transform) =>
exhaustMapSingle(transform);