rollbackTransaction method

Future<void> rollbackTransaction(
  1. int txnId
)

Implementation

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