ErrorEvent constructor

const ErrorEvent(
  1. dynamic error,
  2. StackTrace stackTrace, {
  3. String? description,
  4. Level level = Level.error,
})

Implementation

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