decoder 属性
覆盖
返回 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);
}