decoder 属性

Utf8Decoder decoder
覆盖

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

它可能是状态性的,并且不应被重复使用。

实现

Utf8Decoder get decoder {
  // Switch between const objects to avoid allocation.
  return _allowMalformed
      ? const Utf8Decoder(allowMalformed: true)
      : const Utf8Decoder(allowMalformed: false);
}