JsonEncoder 构造函数

const JsonEncoder(
  1. [Object? toEncodable(
    1. dynamic object
    )?]
)

创建一个 JSON 编码器。

JSON 编码器可以直接处理数字、字符串、布尔值、null、列表和字符串键的映射。

其他任何对象尝试通过 toEncodable 转换为可转换类型之一的对象。

如果省略 toEncodable,则默认为调用对象的 .toJson()

实现

const JsonEncoder([Object? toEncodable(dynamic object)?])
    : indent = null,
      _toEncodable = toEncodable;