MysqlProfile constructor

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

Implementation

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