Dart API Reference
dart:convert
Latin1Encoder
Latin1Encoder
class
This class converts strings of only ISO Latin-1 characters to bytes.
This class converts strings of only ISO Latin-1 characters to bytes.
Constructors
Latin1Encoder
()
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.