asyncMap<N> method

Selectable<N> asyncMap<N>(
  1. FutureOr<N> mapper(
    1. T
    )
)

Maps this selectable by the mapper function.

Like map just async.

Implementation

Selectable<N> asyncMap<N>(FutureOr<N> Function(T) mapper) {
  return _AsyncMappedSelectable<T, N>(this, mapper);
}