responseFinished abstract method

void responseFinished({
  1. required Object resourceKey,
  2. HttpClientResponse response,
  3. Map<String, Object?> userAttributes,
  4. Object? error,
})

Called when an HttpClientResponse is finished.

resourceKey can be used to connect the request and response or to connect to other user operations.

Implementation

void responseFinished({
  required Object resourceKey,
  HttpClientResponse response,
  Map<String, Object?> userAttributes,
  Object? error,
});