CodePreviewProps constructor

const CodePreviewProps({
  1. required String code,
  2. String? language,
  3. bool mono = true,
})

Implementation

const CodePreviewProps({
  required this.code,
  this.language,
  this.mono = true,
});