toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotations = this.annotations;
final conditions = this.conditions;
final createTime = this.createTime;
final error = this.error;
final etag = this.etag;
final labels = this.labels;
final locations = this.locations;
final name = this.name;
final state = this.state;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'annotations': ?annotations,
'conditions': ?conditions,
'createTime': ?createTime,
'error': ?error,
'etag': ?etag,
'labels': ?labels,
'locations': ?locations,
'name': ?name,
'state': ?state,
'uid': ?uid,
'updateTime': ?updateTime,
};
}