rollbackTransaction method
Rolls back a transaction.
The connectionId and txnId must be valid and correspond to
an active transaction started with beginTransaction.
Implementation
Future<Result<Unit>> rollbackTransaction(
String connectionId,
int txnId,
) async =>
_repository.rollbackTransaction(connectionId, txnId);