NiceLogViewer constructor

const NiceLogViewer({
  1. Key? key,
  2. required List<NiceLogEntry> logs,
  3. bool showTimestamp = true,
  4. bool showLevel = true,
  5. bool showSource = true,
  6. NiceLogLevel? filterLevel,
  7. String? filterSource,
  8. String? filterText,
  9. bool autoScroll = true,
  10. int maxEntries = 1000,
  11. 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,
});