ConnectConfig constructor

ConnectConfig({
  1. String? dsn,
  2. String? instanceName,
  3. String? credentials,
  4. String? credentialsFile,
  5. String? host,
  6. int? port,
  7. String? database,
  8. String? user,
  9. String? password,
  10. String? secretKey,
  11. Map<String, String>? serverSettings,
  12. String? tlsCA,
  13. String? tlsCAFile,
  14. TLSSecurity? tlsSecurity,
  15. Duration? waitUntilAvailable,
})

Implementation

ConnectConfig(
    {this.dsn,
    this.instanceName,
    this.credentials,
    this.credentialsFile,
    this.host,
    this.port,
    this.database,
    this.user,
    this.password,
    this.secretKey,
    this.serverSettings,
    this.tlsCA,
    this.tlsCAFile,
    this.tlsSecurity,
    this.waitUntilAvailable});