PostgresqlProfile constructor

PostgresqlProfile({
  1. String? database,
  2. String? hostname,
  3. String? password,
  4. int? port,
  5. String? username,
})

Implementation

PostgresqlProfile({
  this.database,
  this.hostname,
  this.password,
  this.port,
  this.username,
});