将仅包含 ASCII 字符的字符串转换为字节。
示例
const asciiEncoder = AsciiEncoder();
const sample = 'Dart';
final asciiValues = asciiEncoder.convert(sample);
print(asciiValues); // [68, 97, 114, 116]
构造函数
- AsciiEncoder()
-
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 - 相等操作符。继承