mapAsync<B> abstract method

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

Implementation

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