此类将仅包含 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
- 此对象的哈希码。无设置器继承
- runtimeType → Type
- 对象运行时类型的表示。无设置器继承
方法
-
bind(
Stream< String> stream) → Stream<List< int> > - 转换提供的
stream
。继承 -
cast<
RS, RT> () → Converter< RS, RT> - 提供对
Converter<RS, RT>
的流转换器视图。继承 -
convert(
String string, [int start = 0, int? end]) → Uint8List - 将 String 转换为其代码单元的列表。继承
-
fuse<
TT> (Converter< List< other) → Converter<int> , TT>String, TT> - 将
this
与other
合并。继承 -
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时调用。继承
-
startChunkedConversion(
Sink< List< sink) → StringConversionSinkint> > - 启动分块转换。继承
-
toString(
) → String - 该对象的字符串表示形式。继承
运算符
-
operator ==(
Object other) → bool - 等于运算符。继承