contentLength property
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 => httpResponse.contentLength;
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
set contentLength(int value) => httpResponse.contentLength = value;