JsonUtf8Encoderfinal

将单个对象编码为 UTF-8 编码的 JSON 字符串的编码器。

此编码器与先将对象转换为 JSON 字符串,然后对字符串进行 UTF-8 编码的功能等效,但无需创建中间字符串。

继承

构造函数

JsonUtf8Encoder([String? indent, dynamic toEncodable(dynamic object)?, int? bufferSize])
创建转换器。

属性

hashCode int
此对象的哈希码。
无设置器继承
runtimeType Type
对象运行时类型的表示。
无设置器继承

方法

bind(Stream<Object?> stream) Stream<List<int>>
转换提供的 stream
重写
cast<RS, RT>() Converter<RS, RT>
为此流转换器提供 Converter<RS, RT> 视图。
继承
convert(Object? object) List<int>
object 转换为 UTF-8 编码的 JSON。
重写
fuse<TT>(Converter<List<int>, TT> other) Converter<Object?, TT>
thisother 合并。
继承
noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时调用。
继承
startChunkedConversion(Sink<List<int>> sink) ChunkedConversionSink<Object?>
开始分块转换。
重写
toString() String
此对象的字符串表示形式。
继承

运算符

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