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