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