CodeWindowProps constructor

const CodeWindowProps({
  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,
})

Implementation

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