transactionClosed property

bool transactionClosed

True if the current transaction has been rolled back in the execution

Implementation

bool get transactionClosed => _transactionClosed ?? false;
void transactionClosed=(bool transactionClosed)

True if the current transaction has been rolled back in the execution

Implementation

set transactionClosed(bool transactionClosed) =>
    _transactionClosed = transactionClosed;