decoder 属性
覆盖
返回 this
的解码器,将 List<int>
转换为 String
。
可能具有状态且不应重复使用。
实现
Converter<List<int>, String> get decoder {
if (Platform.operatingSystem == "windows") {
return const _WindowsCodePageDecoder();
} else {
return const Utf8Decoder();
}
}