autoCompress property

  1. @override
bool autoCompress
override

Whether the HttpServer should compress the content, if possible.

The content can only be compressed when the response is using chunked Transfer-Encoding and the incoming request has gzip as an accepted encoding in the Accept-Encoding header.

The default value is false (compression disabled). To enable, set autoCompress to true.

Implementation

@override
bool get autoCompress => _servers.first.autoCompress;
  1. @override
void autoCompress=(bool value)
override

Whether the HttpServer should compress the content, if possible.

The content can only be compressed when the response is using chunked Transfer-Encoding and the incoming request has gzip as an accepted encoding in the Accept-Encoding header.

The default value is false (compression disabled). To enable, set autoCompress to true.

Implementation

@override
set autoCompress(bool value) {
  for (var server in _servers) {
    server.autoCompress = value;
  }
}