DbConfig.postgresql constructor
const
DbConfig.postgresql({})
PostgreSQL configuration
Implementation
const DbConfig.postgresql({
required this.host,
this.port = 5432,
required this.database,
this.username,
this.password,
this.ssl = false,
}) : dbType = DatabaseType.postgresql;