TransactionError constructor

const TransactionError({
  1. required TransactionErrorType type,
  2. required String message,
  3. Object? cause,
  4. String? stackTrace,
})

Implementation

const TransactionError({
  required this.type,
  required this.message,
  this.cause,
  this.stackTrace,
});