confirmSuccess method
Confirm success and prevent auto-rollback
Implementation
void confirmSuccess(String interactionId) {
_rollbackTimers[interactionId]?.cancel();
_rollbackTimers.remove(interactionId);
_cleanupInteraction(interactionId);
}
Confirm success and prevent auto-rollback
void confirmSuccess(String interactionId) {
_rollbackTimers[interactionId]?.cancel();
_rollbackTimers.remove(interactionId);
_cleanupInteraction(interactionId);
}