该类将仅包含 ISO Latin-1 字符的字符串转换为字节数组。
示例
final latin1Encoder = latin1.encoder;
const sample = 'àáâãäå';
final encoded = latin1Encoder.convert(sample);
print(encoded); // [224, 225, 226, 227, 228, 229]
构造函数
- Latin1Encoder()
-
const
属性
- hashCode → int
- 该对象的哈希码。no setterinherited
- runtimeType → Type
- 对象的运行时类型表示。no setterinherited
方法
-
bind(
Stream< String> stream) → Stream<List< int> > - 转换提供的
stream
。inherited -
cast<
RS, RT> () → Converter< RS, RT> - 提供对该流转换器的
Converter<RS, RT>
视图。inherited -
convert(
String string, int start = 0, int? end]) → Uint8List - 将 String 转换为其代码单元的列表。inherited
-
fuse<
TT> (Converter< List< other) → Converter<int> , TT>String, TT> - 将
this
与other
合并。inherited -
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的函数或属性时被调用。inherited
-
startChunkedConversion(
Sink< List< sink) → StringConversionSinkint> > - 启动分块转换。inherited
-
toString(
) → String - 此对象的字符串表示形式。inherited
运算符
-
operator ==(
Object other) → bool - 等于运算符。inherited