DbConfig constructor

const DbConfig({
  1. required String host,
  2. required int port,
  3. required String database,
  4. String? username,
  5. String? password,
  6. DatabaseType dbType = DatabaseType.postgresql,
  7. bool ssl = false,
})

Implementation

const DbConfig({
  required this.host,
  required this.port,
  required this.database,
  this.username,
  this.password,
  this.dbType = DatabaseType.postgresql,
  this.ssl = false,
});