decode 方法

String decode(
  1. List<int> bytes, {
  2. bool? allowInvalid,
})
override

将 Latin-1 编码的字节(无符号 8 位整数的列表)解码为相应的字符串。

如果 bytes 包含不在 0 .. 255 范围内的值,解码器最终会抛出 FormatException 异常。

如果没有提供 allowInvalid,则默认为创建此 Latin1Codec 时使用的值。

实现

String decode(List<int> bytes, {bool? allowInvalid}) {
  if (allowInvalid ?? _allowInvalid) {
    return const Latin1Decoder(allowInvalid: true).convert(bytes);
  } else {
    return const Latin1Decoder(allowInvalid: false).convert(bytes);
  }
}