AsciiCodecfinal

AsciiCodec允许将字符串编码为ASCII字节,并将ASCII字节解码为字符串。

继承

构造函数

AsciiCodec({bool allowInvalid = false})
实例化一个新的AsciiCodec
const

属性

decoder AsciiDecoder
返回this的解码器,将List<int>转换为String
无设置器override
encoder AsciiEncoder
String返回编码器到List<int>
无设置器override
hashCode int
此对象的哈希码。
无设置器继承
inverted Codec<List<int>, String>
反转this
无设置器继承
name String
此编解码器的名称为"us-ascii"。
无设置器override
runtimeType Type
对象的运行时类型表示。
无设置器继承

方法

decode(List<int> bytes, {bool? allowInvalid}) String
将ASCII bytes(无符号7位整数的列表)解码为相应的字符串。
override
decodeStream(Stream<List<int>> byteStream) Future<String>
继承
encode(String source) Uint8List
编码 input
override
fuse<R>(Codec<List<int>, R> other) Codec<String, R>
thisother 合并。
继承
noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时调用。
继承
toString() String
此对象的字符串表示。
继承

运算符

operator ==(Object other) bool
等号运算符。
继承