LogEntryModel constructor

const LogEntryModel(
  1. String id,
  2. DateTime timestamp,
  3. String message,
  4. LogLevel level,
  5. String? category,
  6. String? tag,
  7. Map<String, dynamic>? metadata,
  8. Object? error,
  9. String? stackTrace,
  10. String? userId,
  11. String? sessionId,
)

Implementation

const LogEntryModel(
  this.id,
  this.timestamp,
  this.message,
  this.level,
  this.category,
  this.tag,
  this.metadata,
  this.error,
  this.stackTrace,
  this.userId,
  this.sessionId,
);