ErrorEvent constructor

const ErrorEvent(
  1. dynamic error,
  2. StackTrace stackTrace, {
  3. String? description,
  4. Level level = Level.error,
  5. String? fingerprint,
  6. String? title,
  7. JsonMap? custom,
})

Implementation

const ErrorEvent(
  this.error,
  this.stackTrace, {
  this.description,
  this.level = Level.error,
  this.fingerprint,
  this.title,
  this.custom,
});