ArcaneCodePreview constructor

const ArcaneCodePreview({
  1. required String code,
  2. String? language,
  3. bool mono = true,
  4. Key? key,
})

Implementation

const ArcaneCodePreview({
  required this.code,
  this.language,
  this.mono = true,
  super.key,
});