LogEntry constructor
LogEntry({})
Implementation
LogEntry({
required this.message,
this.level = LogLevel.debug,
DateTime? timestamp,
this.tags = const {},
}) : timestamp = timestamp ?? DateTime.now();
LogEntry({
required this.message,
this.level = LogLevel.debug,
DateTime? timestamp,
this.tags = const {},
}) : timestamp = timestamp ?? DateTime.now();