SentryException constructor

const SentryException({
  1. required String? type,
  2. required String? value,
  3. String? module,
  4. SentryStackTrace? stackTrace,
  5. Mechanism? mechanism,
  6. int? threadId,
  7. dynamic throwable,
})

Implementation

const SentryException({
  required this.type,
  required this.value,
  this.module,
  this.stackTrace,
  this.mechanism,
  this.threadId,
  this.throwable,
});