JSON constructor
JSON([
- dynamic _rawValue = const {},
- JSONKey? _key
创建一个新的JSON解析器
rawValue 解析的值 默认为空字典
key
关联上一个JSON的数据 用于在设置值的时候更新最顶层的JSON
Implementation
JSON([this._rawValue = const {}, this._key]);