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