toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final key = this.key;
final list = this.list;
final map = this.map;
final type = this.type;
final value = this.value;
return {
'key': ?key,
'list': ?list,
'map': ?map,
'type': ?type,
'value': ?value,
};
}