asyncExpandSingle<R> method

Single<R> asyncExpandSingle<R>(
  1. Single<R> transform(
    1. T
    )
)

Likes asyncExpand, but returns a Single.

Implementation

Single<R> asyncExpandSingle<R>(Single<R> Function(T) transform) =>
    Single.safe(asyncExpand(transform));