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