Encoding encoding

The Encoding used when writing strings. Depending on the underlying consumer this property might be mutable.

Source

Encoding get encoding => _sink.encoding;
void encoding=(Encoding encoding)

The Encoding used when writing strings. Depending on the underlying consumer this property might be mutable.

Source

void set encoding(Encoding encoding) {
  _sink.encoding = encoding;
}