contentLength property
The ContentType of the contentTypeHeader header, if any. The value of the contentLengthHeader header, if any.
The value is negative if there is no content length set.
Implementation
@override
int get contentLength => _headers.contentLength;
The ContentType of the contentTypeHeader header, if any. The value of the contentLengthHeader header, if any.
The value is negative if there is no content length set.
Implementation
@override
set contentLength(int contentLength) {
_headers.contentLength = contentLength;
}