flatMapAsyncToResponse<T> method
Implementation
Future<Response<T>> flatMapAsyncToResponse<T>(Future<Response<T>> Function(B? payload) mapper) async {
var res = await this;
return await res.flatMapAsync(mapper);
}
Future<Response<T>> flatMapAsyncToResponse<T>(Future<Response<T>> Function(B? payload) mapper) async {
var res = await this;
return await res.flatMapAsync(mapper);
}