MySqlReplicaConfiguration constructor

MySqlReplicaConfiguration({
  1. String? caCertificate,
  2. String? clientCertificate,
  3. String? clientKey,
  4. int? connectRetryInterval,
  5. String? dumpFilePath,
  6. String? kind,
  7. String? masterHeartbeatPeriod,
  8. String? password,
  9. String? sslCipher,
  10. String? username,
  11. bool? verifyServerCertificate,
})

Implementation

MySqlReplicaConfiguration({
  this.caCertificate,
  this.clientCertificate,
  this.clientKey,
  this.connectRetryInterval,
  this.dumpFilePath,
  this.kind,
  this.masterHeartbeatPeriod,
  this.password,
  this.sslCipher,
  this.username,
  this.verifyServerCertificate,
});