SslConfig constructor

SslConfig({
  1. String? caCertificate,
  2. String? clientCertificate,
  3. String? clientKey,
  4. Map<String, String>? sslFlags,
  5. String? type,
})

Implementation

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