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