JsonCodec.withReviver 构造函数

JsonCodec.withReviver(
  1. dynamic reviver(
    1. Object? key,
    2. Object? value
    )
)

创建一个带有指定恢复器的 JsonCodec

在解码过程中,对于每个已解析的对象或列表属性,都会调用一次 reviver 函数。参数 key 是列表属性的整数列表索引,对象属性的字符串映射键,或者是最终结果的 null

实现

JsonCodec.withReviver(dynamic reviver(Object? key, Object? value))
    : this(reviver: reviver);