TerminalView constructor
const
TerminalView({
- Key? key,
- required List<
TerminalLine> lines, - bool autoScroll = true,
- int maxScrollback = 10000,
- bool showTimestamps = false,
- bool showLineNumbers = false,
- TextStyle? baseStyle,
- Color? backgroundColor,
- 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,
});