MarkdownWidget constructor

const MarkdownWidget({
  1. Key? key,
  2. required String data,
  3. TocController? tocController,
  4. ScrollPhysics? physics,
  5. bool shrinkWrap = false,
  6. bool selectable = true,
  7. EdgeInsetsGeometry? padding,
  8. MarkdownConfig? config,
  9. MarkdownGenerator? markdownGenerator,
})

Implementation

const MarkdownWidget({
  Key? key,
  required this.data,
  this.tocController,
  this.physics,
  this.shrinkWrap = false,
  this.selectable = true,
  this.padding,
  this.config,
  this.markdownGenerator,
}) : super(key: key);