encoding property

  1. @override
Encoding get encoding
override

The Encoding used when writing strings.

Depending on the underlying consumer, this property might be mutable.

Implementation

@override
Encoding get encoding => _httpClientRequest.encoding;
set encoding (Encoding value)
override

The Encoding used when writing strings.

Depending on the underlying consumer, this property might be mutable.

Implementation

set encoding(Encoding value) {
  _httpClientRequest.encoding = value;
}