toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final name = this.name;
final parent = this.parent;
final tagValue = this.tagValue;
final tagValueNamespacedName = this.tagValueNamespacedName;
return {
'name': ?name,
'parent': ?parent,
'tagValue': ?tagValue,
'tagValueNamespacedName': ?tagValueNamespacedName,
};
}