SystemEncoding class

The system encoding is the current code page on Windows and UTF-8 on Linux and Mac.

The system encoding is the current code page on Windows and UTF-8 on Linux and Mac.

Extends

Constructors

SystemEncoding()
const

Instance Properties

name String
read-only
encoder Converter<String,List<int>>
read-only
decoder Converter<List<int>,String>
read-only
inverted Codec<List<int>,String> Inherited
read-only
inverted Codec<List<int>,String> Inherited
read-only

Instance Methods

encode(String input) → List<int>
decode(List<int> encoded) → String
fuse(Codec<List<int>> other) → Codec<String> Inherited
Fuses this with other.
decodeStream(Stream<List<int>> byteStream) → Future<String> Inherited
fuse(Codec<List<int>> other) → Codec<String> Inherited
Fuses this with other.