toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final filesystemUsedBytes = this.filesystemUsedBytes;
final labels = this.labels;
final name = this.name;
final state = this.state;
final tags = this.tags;
return {
'createTime': ?createTime,
'description': ?description,
'filesystemUsedBytes': ?filesystemUsedBytes,
'labels': ?labels,
'name': ?name,
'state': ?state,
'tags': ?tags,
};
}