MarkdownBlock constructor

const MarkdownBlock({
  1. Key? key,
  2. required String data,
  3. bool selectable = true,
  4. MarkdownConfig? config,
  5. MarkdownGenerator? generator,
})

Implementation

const MarkdownBlock({
  Key? key,
  required this.data,
  this.selectable = true,
  this.config,
  this.generator,
}) : super(key: key);