ApiIOResponseParser<O> typedef

ApiIOResponseParser<O> = Future<void> Function(HttpClientResponse response, O? output, dynamic serverParser(HttpClientResponse response, O? output))

Function to process of parsing from HttpClientResponse, an HTTP response from the server, to the output DTO.

Implementation

typedef ApiIOResponseParser<O> = Future<void> Function(HttpClientResponse response, O? output, Function(HttpClientResponse response, O? output) serverParser);