JsonEncoderfinal

此类将 JSON 对象转换为字符串。

示例

const JsonEncoder encoder = JsonEncoder();
const data = {'text': 'foo', 'value': '2'};

final String jsonString = encoder.convert(data);
print(jsonString); // {"text":"foo","value":"2"}

格式化输出示例

const JsonEncoder encoder = JsonEncoder.withIndent('  ');

const data = {'text': 'foo', 'value': '2'};
final String jsonString = encoder.convert(data);
print(jsonString);
// {
//   "text": "foo",
//   "value": "2"
// }
继承

构造函数

JsonEncoder([Object? toEncodable(dynamic object)?])
创建一个 JSON 编码器。
const
JsonEncoder.withIndent(String? indent, [Object? toEncodable(dynamic object)?])
创建一个生成多行 JSON 的 JSON 编码器。
const

属性

hashCode int
此对象的哈希码。
no setterinherited
runtimeType Type
用于缩进的字符串。
final
hashCode int
对象的运行时类型表示。
no setterinherited

方法

bind(Stream<Object?> stream) Stream<String>
转换提供的 stream
override
cast<RS, RT>() Converter<RS, RT>
提供此流转换器的 Converter<RS, RT> 视图。
inherited
convert(Object? object) String
object 转换为 JSON String
override
fuse<T>(Converter<String, T> other) Converter<Object?, T>
将当前对象与 other 合并。
override
noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时被调用。
inherited
startChunkedConversion(Sink<String> sink) ChunkedConversionSink<Object?>
开始分块转换。
override
toString() String
此对象的字符串表示。
inherited

运算符

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