flatAndCollectAsync<B, X> abstract method

Future<Response<List<B>>> flatAndCollectAsync<B, X>(
  1. Iterable<X> source,
  2. Future<Response<B>> mapper(
    1. X source
    )
)

Implementation

Future<Response<List<B>>> flatAndCollectAsync<B, X>(
  Iterable<X> source,
  Future<Response<B>> Function(X source) mapper,
);