encoder property
override
Returns the encoder from S
to T
.
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();
}
}