savePointCreator function

TransactionCreator<SavePoint> savePointCreator([
  1. String? name
])

savepoint creator function

If name is not given then a new name will be generated

Implementation

sql.TransactionCreator<SavePoint> savePointCreator([String? name]) =>
    ((sql.Database db) => SavePoint._(db as Database, name));