bufferOutput property
Gets or sets if the HttpClientRequest should buffer output.
Default value is true
.
Note: Disabling buffering of the output can result in very poor performance, when writing many small chunks.
Implementation
@override
bool get bufferOutput => _httpClientRequest.bufferOutput;
Gets or sets if the HttpClientRequest should buffer output.
Default value is true
.
Note: Disabling buffering of the output can result in very poor performance, when writing many small chunks.
Implementation
@override
set bufferOutput(bool value) => _httpClientRequest.bufferOutput = value;