TerminalView constructor

const TerminalView({
  1. Key? key,
  2. required List<TerminalLine> lines,
  3. bool autoScroll = true,
  4. int maxScrollback = 10000,
  5. bool showTimestamps = false,
  6. bool showLineNumbers = false,
  7. TextStyle? baseStyle,
  8. Color? backgroundColor,
  9. ScrollController? scrollController,
})

Implementation

const TerminalView({
  super.key,
  required this.lines,
  this.autoScroll = true,
  this.maxScrollback = 10000,
  this.showTimestamps = false,
  this.showLineNumbers = false,
  this.baseStyle,
  this.backgroundColor,
  this.scrollController,
});