decoder property

Converter<List<int>, String> decoder

Implementation

Converter<List<int>, String> get decoder {
  if (Platform.operatingSystem == "windows") {
    return const _WindowsCodePageDecoder();
  } else {
    return const Utf8Decoder();
  }
}