decoder 属性

Latin1Decoder decoder
覆盖

返回 this 的解码器,将 List<int> 转换为 String

可能具有状态,不应重复使用。

实现

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