encoding property
inherited
The Encoding
used when writing strings. Depending on the
underlying consumer this property might be mutable.
Implementation
Encoding get encoding => _sink.encoding;
inherited
The Encoding
used when writing strings. Depending on the
underlying consumer this property might be mutable.
Implementation
void set encoding(Encoding encoding) {
_sink.encoding = encoding;
}