transactionClosed property
bool
get
transactionClosed
True if the current transaction has been rolled back in the execution
Implementation
bool get transactionClosed => _transactionClosed ?? false;
set
transactionClosed
(bool transactionClosed)
True if the current transaction has been rolled back in the execution
Implementation
set transactionClosed(bool transactionClosed) =>
_transactionClosed = transactionClosed;