isolationLevel property

IsolationLevel? isolationLevel

deno-postgres@v0.17.0/TransactionOptions/isolation_level.

Implementation

IsolationLevel? get isolationLevel {
  final jsProperty = getProperty<String?>(this, 'isolation_level');

  return jsProperty == null ? null : IsolationLevel.parse(jsProperty);
}