ArcaneCodeWindow.terminal constructor

const ArcaneCodeWindow.terminal({
  1. required String code,
  2. String? title,
  3. bool showButtons = true,
  4. String? codeColor,
  5. String? headerBackground,
  6. String? bodyBackground,
  7. Key? key,
})

Implementation

const ArcaneCodeWindow.terminal({
  required this.code,
  this.title,
  this.showButtons = true,
  this.codeColor,
  this.headerBackground,
  this.bodyBackground,
  super.key,
}) : style = CodeWindowStyle.terminal;