beginTransaction method

Future<void> beginTransaction(
  1. int txnId
)

Implementation

Future<void> beginTransaction(int txnId) async {
  _currentTxnId = txnId;
  await append(WalOp.beginTxn, '_txn', {'txnId': txnId}, txnId: txnId);
}