ArcaneCodeBlock constructor

const ArcaneCodeBlock({
  1. required List<Component> children,
  2. CodeBlockStyle style = CodeBlockStyle.raw,
  3. ArcaneStyleData? styles,
  4. String? classes,
  5. String? id,
  6. Map<String, String>? attributes,
  7. Key? key,
})

Implementation

const ArcaneCodeBlock({
  required this.children,
  this.style = CodeBlockStyle.raw,
  this.styles,
  this.classes,
  this.id,
  this.attributes,
  super.key,
});