TestResponseBody(HttpClientResponse response)

Creates a new instance of this type.

Instances of this type decode response's body based on its content-type.

See HTTPCodecRepository for more information about how data is decoded.

Decoded data is cached the after it is decoded.

Source

TestResponseBody(HttpClientResponse response)
    : this._response = response,
      super(response) {
  _hasContent = (response.headers.contentLength ?? 0) > 0
      || response.headers.chunkedTransferEncoding;
}