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 => _inner.encoding;
  1. @override
set encoding (Encoding value)
override

The Encoding used when writing strings.

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

Implementation

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