from static method

Component from({
  1. required String source,
  2. Highlighter? highlighter,
  3. Key? key,
})

Implementation

static Component from({required String source, Highlighter? highlighter, Key? key}) {
  return _CodeBlock(source: source, highlighter: highlighter, key: key);
}