PostgresOptions constructor
const
PostgresOptions({})
Creates pool configuration; opening the driver validates its values.
Implementation
const PostgresOptions({
required this.url,
this.tls = PostgresTls.verifyFull,
this.maxConnections = 8,
this.connectTimeout = const Duration(seconds: 10),
this.poolTimeout = const Duration(seconds: 30),
this.queryTimeout = const Duration(seconds: 30),
this.applicationName = 'dart-orm',
this.schema,
});