TlsConfig constructor

const TlsConfig({
  1. String? caCertificateFile,
  2. String? clientCertificateFile,
  3. String? clientKeyFile,
  4. bool allowInsecure = false,
})

Creates a TLS configuration.

Implementation

const TlsConfig({
  this.caCertificateFile,
  this.clientCertificateFile,
  this.clientKeyFile,
  this.allowInsecure = false,
});