JsonEncoder 构造函数
- Object? toEncodable(
- dynamic object
创建一个 JSON 编码器。
JSON 编码器直接处理数字、字符串、布尔值、null、列表和具有字符串键的映射。
任何其他对象都将尝试通过 toEncodable
转换为可转换类型之一的对象。
如果省略 toEncodable
,则默认调用对象的 .toJson()
。
实现
const JsonEncoder([Object? toEncodable(dynamic object)?])
: indent = null,
_toEncodable = toEncodable;