chunkedTransferEncoding property

  1. @override
bool chunkedTransferEncoding
override

Whether the connection uses chunked transfer encoding.

Reflects and modifies the value of the transferEncodingHeader header.

Implementation

@override
bool get chunkedTransferEncoding => origin.chunkedTransferEncoding;
  1. @override
void chunkedTransferEncoding=(bool value)
override

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;
}