rollbackToSavepoint method
Rolls back to the named savepoint. The transaction itself stays active.
Returns false immediately if the transaction is no longer active.
Implementation
bool rollbackToSavepoint(String name) {
if (_state != _State.active) return false;
return _backend.rollbackToSavepoint(_txnId, name);
}