CodeBlockMeta constructor

const CodeBlockMeta({
  1. String? language,
  2. String? filename,
  3. bool isInline = false,
})

Creates a CodeBlockMeta instance.

Implementation

const CodeBlockMeta({
  this.language,
  this.filename,
  this.isInline = false,
});