decoder property Null safety

AsciiDecoder decoder
override

Returns the decoder of this, converting from List<int> to String.

It may be stateful and should not be reused.

Implementation

AsciiDecoder get decoder => _allowInvalid
    ? const AsciiDecoder(allowInvalid: true)
    : const AsciiDecoder(allowInvalid: false);