TransactionException constructor

const TransactionException(
  1. String message, {
  2. String? code = 'P2034',
  3. Object? originalError,
  4. Map<String, dynamic>? context,
  5. bool rolledBack = true,
})

Implementation

const TransactionException(
  super.message, {
  super.code = 'P2034',
  super.originalError,
  super.context,
  this.rolledBack = true,
});