AurisTerminal constructor

const AurisTerminal({
  1. Key? key,
  2. required List<AurisTerminalLine> lines,
  3. String title = 'TERMINAL',
  4. String? code,
  5. bool showCursor = true,
  6. double height = 200,
})

Creates a terminal log.

Implementation

const AurisTerminal({
  super.key,
  required this.lines,
  this.title = 'TERMINAL',
  this.code,
  this.showCursor = true,
  this.height = 200,
});