contentLength property

  1. @override
int contentLength
override

Gets and sets the content length of the response. If the size of the response is not known in advance set the content length to -1, which is also the default if not set.

Implementation

@override
int get contentLength => origin.contentLength;
  1. @override
void contentLength=(int contentLength)
override

Gets and sets the content length of the response. If the size of the response is not known in advance set the content length to -1, which is also the default if not set.

Implementation

@override
void set contentLength(int contentLength) {
  origin.contentLength = contentLength;
}