PostgresTransaction constructor

const PostgresTransaction({
  1. Isolation isolation = Isolation.readCommitted,
  2. bool readOnly = false,
})

Creates PostgreSQL settings applied by the transaction BEGIN statement.

Implementation

const PostgresTransaction({
  this.isolation = Isolation.readCommitted,
  this.readOnly = false,
});