Connection constructor

Connection(
  1. String _db,
  2. String _host,
  3. int _port,
  4. String _user,
  5. String _password,
  6. Map? _sslOpts,
)

Implementation

Connection(
  this._db,
  this._host,
  this._port,
  this._user,
  this._password,
  this._sslOpts,
);