LogEvent constructor

LogEvent(
  1. String title, {
  2. Object? exception,
  3. StackTrace? stackTrace,
  4. Level level = Level.debug,
})

Implementation

LogEvent(
  this.title, {
  this.exception,
  this.stackTrace,
  this.level = Level.debug,
});