decoder 属性
覆盖
返回 this 的解码器,将 List<int> 转换为 String。
它可能是状态化的,不应重复使用。
实现
Latin1Decoder get decoder => _allowInvalid
? const Latin1Decoder(allowInvalid: true)
: const Latin1Decoder(allowInvalid: false);
返回 this 的解码器,将 List<int> 转换为 String。
它可能是状态化的,不应重复使用。
Latin1Decoder get decoder => _allowInvalid
? const Latin1Decoder(allowInvalid: true)
: const Latin1Decoder(allowInvalid: false);