mapToAsync method

Iterable<Async<T>> mapToAsync()

Converts every Resolvable in the iterable to an Async.

Implementation

Iterable<Async<T>> mapToAsync() => map((e) => e.toAsync());