toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final capacity = this.capacity;
final createTime = this.createTime;
final description = this.description;
final items = this.items;
final labels = this.labels;
final name = this.name;
final purpose = this.purpose;
final selfLink = this.selfLink;
final type = this.type;
final updateTime = this.updateTime;
return {
'capacity': ?capacity,
'createTime': ?createTime,
'description': ?description,
'items': ?items,
'labels': ?labels,
'name': ?name,
'purpose': ?purpose,
'selfLink': ?selfLink,
'type': ?type,
'updateTime': ?updateTime,
};
}