LogContent constructor

const LogContent({
  1. Key? key,
  2. required List<LogEntry> logs,
  3. required bool autoScroll,
  4. required bool isPaused,
})

Implementation

const LogContent({
  super.key,
  required this.logs,
  required this.autoScroll,
  required this.isPaused,
});