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