withInterceptor method

Future<FlipperHttpClientResponse> withInterceptor(
  1. HttpClientResponse response
)

Implementation

Future<FlipperHttpClientResponse> withInterceptor(
  HttpClientResponse response,
) async {
  FlipperHttpClientResponse responseWithInterceptor =
      new FlipperHttpClientResponse(this.uniqueId, response);

  return responseWithInterceptor;
}