LogEntry constructor
LogEntry({
- required LoggingLogLevel level,
- required dynamic message,
- dynamic exception,
- String? information,
- Map<
String, dynamic> ? metadata, - required DateTime timestamp,
Implementation
LogEntry({
required this.level,
required this.message,
this.exception,
this.information,
this.metadata,
required this.timestamp,
});