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