toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final caCertificate = this.caCertificate;
final clientCertificate = this.clientCertificate;
final clientKey = this.clientKey;
final sslFlags = this.sslFlags;
final type = this.type;
return {
'caCertificate': ?caCertificate,
'clientCertificate': ?clientCertificate,
'clientKey': ?clientKey,
'sslFlags': ?sslFlags,
'type': ?type,
};
}