PgSessionSettings constructor

PgSessionSettings({
  1. Duration? connectTimeout,
  2. String? timeZone,
  3. Encoding? encoding,
  4. bool onBadSslCertificate(
    1. X509Certificate
    )?,
  5. StreamChannelTransformer<BaseMessage, BaseMessage>? transformer,
  6. ReplicationMode replicationMode = ReplicationMode.none,
  7. QueryMode queryMode = QueryMode.extended,
})

Implementation

PgSessionSettings({
  this.connectTimeout,
  this.timeZone,
  this.encoding,
  this.onBadSslCertificate,
  this.transformer,
  this.replicationMode = ReplicationMode.none,
  this.queryMode = QueryMode.extended,
});