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
(
Converter
<
List
<
int
>>
other
) →
Converter
<
String
>
Inherited
Fuses this with other.
startChunkedConversion
(
Sink
<
List
<
int
>>
sink
) →
StringConversionSink
Inherited
Starts a chunked conversion.
bind
(
Stream
<
String
>
stream
) →
Stream
<
List
<
int
>>
Inherited
Transform the incoming [stream]'s events.
convert
(
String
string
, [
int
start
=
0
,
int
end
]) →
List
<
int
>
Inherited
Converts the
String
into a list of its code units.
fuse
(
Converter
<
List
<
int
>>
other
) →
Converter
<
String
>
Inherited
Fuses this with other.