Dart SDK
dart:convert
Latin1Encoder
class
Latin1Encoder
Constructors
Constructors
Latin1Encoder
Methods
fuse
startChunkedConversion
bind
convert
fuse
This class converts strings of only ISO Latin-1 characters to bytes.
Constructors
Latin1Encoder
()
const
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.