ArcaneCodeWindow constructor

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

Implementation

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