Dart API Reference
dart:convert
AsciiEncoder
AsciiEncoder
class
This class converts strings of only ASCII characters to bytes.
This class converts strings of only ASCII characters to bytes.
Constructors
AsciiEncoder
( )
const
Instance Methods
fuse
Inherited
(
Converter
<
List
<
int
>>
other
) →
Converter
<
String
>
Fuses this with other.
startChunkedConversion
Inherited
(
Sink
<
List
<
int
>>
sink
) →
StringConversionSink
Starts a chunked conversion.
bind
Inherited
(
Stream
<
String
>
stream
) →
Stream
<
List
<
int
>>
Transform the incoming [stream]'s events.
convert
Inherited
(
String
string
, [
int
start
=
0
,
int
end
] ) →
List
<
int
>
Converts the
String
into a list of its code units.
fuse
Inherited
(
Converter
<
List
<
int
>>
other
) →
Converter
<
String
>
Fuses this with other.