ContentCodeBlock constructor

const ContentCodeBlock({
  1. required String sourceCode,
  2. String? language,
  3. String? filename,
  4. bool showLineNumbers = false,
})

Implementation

const ContentCodeBlock({
  required this.sourceCode,
  this.language,
  this.filename,
  this.showLineNumbers = false,
});