TransactionOptions constructor

const TransactionOptions({
  1. List<String> readCollections = const [],
  2. List<String> writeCollections = const [],
  3. List<String> exclusiveCollections = const [],
  4. bool? waitForSync,
  5. bool? allowImplicit,
  6. int? lockTimeoutSeconds,
  7. int? maxTransactionSizeBytes,
})

Implementation

const TransactionOptions({
  this.readCollections = const [],
  this.writeCollections = const [],
  this.exclusiveCollections = const [],
  this.waitForSync,
  this.allowImplicit,
  this.lockTimeoutSeconds,
  this.maxTransactionSizeBytes,
});