toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final host = this.host;
final port = this.port;
final serviceAttachment = this.serviceAttachment;
return {
'host': ?host,
'port': ?port,
'serviceAttachment': ?serviceAttachment,
};
}