postResponse property

Future<void> Function({required Map<String, String> headers, required dynamic responseBody, required int statusCode})? postResponse
final

Called after the HTTP response is received.

Receives the statusCode, the parsed responseBody, and the response headers.

Implementation

final Future<void> Function({
required int statusCode,
required dynamic responseBody,
required Map<String, String> headers,
})? postResponse;