asyncFlatMap<T> method

Stream<T> asyncFlatMap<T>(
  1. Stream<T> callback(
    1. E element
    )
)

Maps each element of this Stream using a mapping function to a stream, then flattens the result into a continuous stream.

This is an alias for Stream.asyncExpand.

Implementation

Stream<T> asyncFlatMap<T>(Stream<T> Function(E element) callback) =>
    asyncExpand<T>(callback);