chunkedTransferEncoding property
Whether the connection uses chunked transfer encoding.
Reflects and modifies the value of the transferEncodingHeader header.
Implementation
@override
bool get chunkedTransferEncoding => origin.chunkedTransferEncoding;
Whether the connection uses chunked transfer encoding.
Reflects and modifies the value of the transferEncodingHeader header.
Implementation
@override
void set chunkedTransferEncoding(bool value) {
origin.chunkedTransferEncoding = value;
}