MysqlSslConfig constructor

MysqlSslConfig({
  1. String? caCertificate,
  2. bool? caCertificateSet,
  3. String? clientCertificate,
  4. bool? clientCertificateSet,
  5. String? clientKey,
  6. bool? clientKeySet,
})

Implementation

MysqlSslConfig({
  this.caCertificate,
  this.caCertificateSet,
  this.clientCertificate,
  this.clientCertificateSet,
  this.clientKey,
  this.clientKeySet,
});