SslConfig constructor

SslConfig({
  1. String? caCertificate,
  2. String? clientCertificate,
  3. String? clientKey,
  4. String? type,
})

Implementation

SslConfig({
  this.caCertificate,
  this.clientCertificate,
  this.clientKey,
  this.type,
});