afterResponse method

Future<InterceptorResult<HttpResponse>> afterResponse(
  1. HttpResponse response
)

Called before the response is returned.

Implementation

Future<InterceptorResult<HttpResponse>> afterResponse(
  HttpResponse response,
) async {
  return next();
}