flatMapAsync<B> abstract method

Future<Response<B>> flatMapAsync<B>(
  1. Future<Response<B>> mapper(
    1. T? t
    )
)

Implementation

Future<Response<B>> flatMapAsync<B>(Future<Response<B>> Function(T? t) mapper);