NoTransactionDelegate constructor
const
NoTransactionDelegate({})
Construct a transaction delegate indicating that native transactions aren't supported and need to be emulated by issuing statements and locking the database.
Implementation
const NoTransactionDelegate({
this.start = 'BEGIN TRANSACTION',
this.commit = 'COMMIT TRANSACTION',
this.rollback = 'ROLLBACK TRANSACTION',
this.savepoint = _defaultSavepoint,
this.release = _defaultRelease,
this.rollbackToSavepoint = _defaultRollbackToSavepoint,
});