toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final etag = this.etag;
final name = this.name;
final namespacedName = this.namespacedName;
final parent = this.parent;
final shortName = this.shortName;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'etag': ?etag,
'name': ?name,
'namespacedName': ?namespacedName,
'parent': ?parent,
'shortName': ?shortName,
'updateTime': ?updateTime,
};
}