toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final assetType = this.assetType;
final effectiveTags = this.effectiveTags;
final folders = this.folders;
final fullResourceName = this.fullResourceName;
final organization = this.organization;
final parent = this.parent;
final project = this.project;
return {
'assetType': ?assetType,
'effectiveTags': ?effectiveTags,
'folders': ?folders,
'fullResourceName': ?fullResourceName,
'organization': ?organization,
'parent': ?parent,
'project': ?project,
};
}