decoder property
override
Returns the decoder of this
, converting from List<int>
to String
.
It may be stateful and should not be reused.
Implementation
Latin1Decoder get decoder => _allowInvalid
? const Latin1Decoder(allowInvalid: true)
: const Latin1Decoder(allowInvalid: false);