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
_i3.Encoding get encoding => (super.noSuchMethod(
      Invocation.getter(#encoding),
      returnValue: _FakeEncoding_5(
        this,
        Invocation.getter(#encoding),
      ),
    ) as _i3.Encoding);
  1. @override
set encoding (Encoding? _encoding)
override

The Encoding used when writing strings.

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

Implementation

@override
set encoding(_i3.Encoding? _encoding) => super.noSuchMethod(
      Invocation.setter(
        #encoding,
        _encoding,
      ),
      returnValueForMissingStub: null,
    );