createSavepoint abstract method

Future<void> createSavepoint(
  1. String name
)

Creates a named savepoint within the transaction.

This allows for partial rollbacks to the savepoint without aborting the entire transaction.

Implementation

Future<void> createSavepoint(String name);