toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final description = this.description;
final endpoints = this.endpoints;
final etag = this.etag;
final ipPrefix = this.ipPrefix;
final labels = this.labels;
final name = this.name;
final stateTimeline = this.stateTimeline;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'description': ?description,
'endpoints': ?endpoints,
'etag': ?etag,
'ipPrefix': ?ipPrefix,
'labels': ?labels,
'name': ?name,
'stateTimeline': ?stateTimeline,
'uid': ?uid,
'updateTime': ?updateTime,
};
}