NiceLogViewer constructor
const
NiceLogViewer({
- Key? key,
- required List<
NiceLogEntry> logs, - bool showTimestamp = true,
- bool showLevel = true,
- bool showSource = true,
- NiceLogLevel? filterLevel,
- String? filterSource,
- String? filterText,
- bool autoScroll = true,
- int maxEntries = 1000,
- ValueChanged<
NiceLogEntry> ? onEntryTap,
Implementation
const NiceLogViewer({
super.key,
required this.logs,
this.showTimestamp = true,
this.showLevel = true,
this.showSource = true,
this.filterLevel,
this.filterSource,
this.filterText,
this.autoScroll = true,
this.maxEntries = 1000,
this.onEntryTap,
});