encoder property
override
Returns the encoder from String
to List<int>
.
It may be stateful and should not be reused.
Implementation
Converter<String, List<int>> get encoder {
if (Platform.operatingSystem == "windows") {
return const _WindowsCodePageEncoder();
} else {
return const Utf8Encoder();
}
}