Dart SDK
dart:io
SystemEncoding
class
SystemEncoding
Properties
Constructors
Methods
Properties
name
encoder
decoder
inverted
inverted
Constructors
SystemEncoding
Methods
encode
decode
fuse
decodeStream
fuse
The system encoding is the current code page on Windows and UTF-8 on Linux and Mac.
Extends
Object
Codec
<
String
,
List
<
int
>>
Encoding
SystemEncoding
Properties
String
name
read-only
Converter
<
String
,
List
<
int
>>
encoder
read-only
Converter
<
List
<
int
>,
String
>
decoder
read-only
Codec
<
List
<
int
>,
String
>
inverted
read-only ,
inherited
Inverts this.
Codec
<
List
<
int
>,
String
>
inverted
read-only ,
inherited
Inverts this.
Constructors
SystemEncoding
()
const
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.