StethoHttpClientResponse constructor

StethoHttpClientResponse(
  1. HttpClientResponse response,
  2. Stream<List<int>> stream
)

Constructs a new StethoHttpClientResponse that wraps response and uses stream as the data source for the response body.

Implementation

StethoHttpClientResponse(this.response, Stream<List<int>> stream)
  : super(stream);