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