LogEntry constructor
LogEntry({})
Implementation
LogEntry({
required this.timestamp,
required this.level,
required this.source,
required this.message,
this.stackTrace,
Map<String, String>? metadata,
}) : metadata = metadata ?? const {};