ContentEncoding property

  1. @override
String ContentEncoding
override
Gets the method that is used to encode the body of the response.

Implementation

@override
String get ContentEncoding =>
    this
        .httpClientResponse
        .headers[HttpHeaders.contentEncodingHeader]
        ?.first ??
    "";