PgEndpoint constructor

PgEndpoint({
  1. required String host,
  2. int port = 5432,
  3. required String database,
  4. String? username,
  5. String? password,
  6. bool requireSsl = false,
  7. bool isUnixSocket = false,
  8. String? applicationName,
})

Implementation

PgEndpoint({
  required this.host,
  this.port = 5432,
  required this.database,
  this.username,
  this.password,
  this.requireSsl = false,
  this.isUnixSocket = false,
  this.applicationName,
});