toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotations = this.annotations;
final createTime = this.createTime;
final deleteTime = this.deleteTime;
final displayName = this.displayName;
final etag = this.etag;
final labels = this.labels;
final location = this.location;
final name = this.name;
final service = this.service;
final type = this.type;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'annotations': ?annotations,
'createTime': ?createTime,
'deleteTime': ?deleteTime,
'displayName': ?displayName,
'etag': ?etag,
'labels': ?labels,
'location': ?location,
'name': ?name,
'service': ?service,
'type': ?type,
'uid': ?uid,
'updateTime': ?updateTime,
};
}