bufferOutput property
override
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 => (super.noSuchMethod(
Invocation.getter(#bufferOutput),
returnValue: false,
) as bool);
override
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? _bufferOutput) => super.noSuchMethod(
Invocation.setter(
#bufferOutput,
_bufferOutput,
),
returnValueForMissingStub: null,
);