PostgreSql constructor

PostgreSql({
  1. CloudSqlInstance? cloudSql,
  2. String? database,
  3. bool? ephemeral,
  4. String? schemaMigration,
  5. String? schemaValidation,
  6. bool? unlinked,
})

Implementation

PostgreSql({
  this.cloudSql,
  this.database,
  this.ephemeral,
  this.schemaMigration,
  this.schemaValidation,
  this.unlinked,
});