LogEntry constructor

LogEntry({
  1. required String id,
  2. required String message,
  3. required LogLevel level,
  4. required String timestamp,
  5. String? stackTrace,
})

Implementation

LogEntry({
  required this.id,
  required this.message,
  required this.level,
  required this.timestamp,
  this.stackTrace,
});