解码器属性
重写
返回this
对象的解码器,将T
转换为S
。
它可能是状态化的,不应该被重用。
实现
JsonDecoder get decoder {
if (_reviver == null) return const JsonDecoder();
return JsonDecoder(_reviver);
}
返回this
对象的解码器,将T
转换为S
。
它可能是状态化的,不应该被重用。
JsonDecoder get decoder {
if (_reviver == null) return const JsonDecoder();
return JsonDecoder(_reviver);
}