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,
})

Implementation

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