toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final accessGroups = this.accessGroups;
final assetCount = this.assetCount;
final createTime = this.createTime;
final description = this.description;
final displayName = this.displayName;
final etag = this.etag;
final icon = this.icon;
final labels = this.labels;
final name = this.name;
final ownerEmails = this.ownerEmails;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'accessGroups': ?accessGroups,
'assetCount': ?assetCount,
'createTime': ?createTime,
'description': ?description,
'displayName': ?displayName,
'etag': ?etag,
'icon': ?icon,
'labels': ?labels,
'name': ?name,
'ownerEmails': ?ownerEmails,
'uid': ?uid,
'updateTime': ?updateTime,
};
}