bufferOutput property

  1. @override
bool get bufferOutput
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);
  1. @override
set bufferOutput (bool? _bufferOutput)
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,
    );