LogMessage constructor

LogMessage(
  1. DateTime timestamp,
  2. String? sender,
  3. String message,
  4. int severity,
  5. dynamic exception,
  6. StackTrace? trace,
)

Implementation

LogMessage(
  this.timestamp,
  this.sender,
  this.message,
  this.severity,
  this.exception,
  this.trace,
);