Terminal constructor

const Terminal({
  1. required List<String> commands,
  2. String prompt = '\$',
  3. String? title,
  4. bool showCopyButton = true,
  5. Key? key,
})

Implementation

const Terminal({
  required this.commands,
  this.prompt = '\$',
  this.title,
  this.showCopyButton = true,
  super.key,
});