chunkedTransferEncoding property
override
Whether the connection uses chunked transfer encoding.
Reflects and modifies the value of the transferEncodingHeader header.
Implementation
@override
bool get chunkedTransferEncoding => (super.noSuchMethod(
Invocation.getter(#chunkedTransferEncoding),
returnValue: false,
) as bool);
override
Whether the connection uses chunked transfer encoding.
Reflects and modifies the value of the transferEncodingHeader header.
Implementation
@override
set chunkedTransferEncoding(bool? _chunkedTransferEncoding) =>
super.noSuchMethod(
Invocation.setter(
#chunkedTransferEncoding,
_chunkedTransferEncoding,
),
returnValueForMissingStub: null,
);