Postgres_SqlConnection constructor

Postgres_SqlConnection(
  1. String host,
  2. int port,
  3. String databaseName,
  4. String username,
  5. String password, {
  6. dynamic timeoutInSeconds,
  7. dynamic queryTimeoutInSeconds,
  8. dynamic timeZone,
  9. dynamic useSSL,
  10. dynamic isUnixSocket,
})

Implementation

Postgres_SqlConnection(
  this.host,
  this.port,
  this.databaseName,
  this.username,
  this.password, {
  timeoutInSeconds,
  queryTimeoutInSeconds,
  timeZone,
  useSSL,
  isUnixSocket,
}) {
  if (useSSL != null) this.useSSL = useSSL;
}