MysqlProfile constructor

MysqlProfile({
  1. String? hostname,
  2. String? password,
  3. int? port,
  4. String? secretManagerStoredPassword,
  5. MysqlSslConfig? sslConfig,
  6. String? username,
})

Implementation

MysqlProfile({
  this.hostname,
  this.password,
  this.port,
  this.secretManagerStoredPassword,
  this.sslConfig,
  this.username,
});