HttpClientResponseBody abstract class
The HttpBody of a HttpClientResponse will be of type HttpClientResponseBody. It contains the HttpClientResponse object for access to the headers.
abstract class HttpClientResponseBody extends HttpBody {
/**
* The [HttpClientResponse] from which the [HttpClientResponseBody] was
* created.
*/
HttpClientResponse get response;
}
Extends
HttpBody > HttpClientResponseBody
Properties
final HttpClientResponse response #
The HttpClientResponse from which the HttpClientResponseBody was created.
HttpClientResponse get response;