SslConfig constructor

SslConfig({
  1. List<ConfigVariable>? additionalVariables,
  2. String? clientCertType,
  3. Secret? clientCertificate,
  4. Secret? clientPrivateKey,
  5. Secret? clientPrivateKeyPass,
  6. Secret? privateServerCertificate,
  7. String? serverCertType,
  8. String? trustModel,
  9. String? type,
  10. bool? useSsl,
})

Implementation

SslConfig({
  this.additionalVariables,
  this.clientCertType,
  this.clientCertificate,
  this.clientPrivateKey,
  this.clientPrivateKeyPass,
  this.privateServerCertificate,
  this.serverCertType,
  this.trustModel,
  this.type,
  this.useSsl,
});