asyncMap<N> method
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);
}
Maps this selectable by the mapper
function.
Like map just async.
Selectable<N> asyncMap<N>(FutureOr<N> Function(T) mapper) {
return _AsyncMappedSelectable<T, N>(this, mapper);
}