PostgreSQLConnectionWrapper constructor

PostgreSQLConnectionWrapper(
  1. Session nativeConnection,
  2. String? username,
  3. String host,
  4. int port,
  5. String database,
  6. bool secure,
)

Implementation

PostgreSQLConnectionWrapper(
  super.nativeConnection,
  this.username,
  this.host,
  this.port,
  this.database,
  this.secure,
);