toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final additionalVariables = this.additionalVariables;
final clientCertType = this.clientCertType;
final isTlsMandatory = this.isTlsMandatory;
final serverCertType = this.serverCertType;
final sslType = this.sslType;
return {
'additionalVariables': ?additionalVariables,
'clientCertType': ?clientCertType,
'isTlsMandatory': ?isTlsMandatory,
'serverCertType': ?serverCertType,
'sslType': ?sslType,
};
}