MarkdownReader constructor

const MarkdownReader({
  1. Key? key,
  2. required String markdownData,
  3. MarkdownStyleSheet? styleSheet,
  4. EdgeInsets? padding,
  5. BoxDecoration? decoration,
  6. bool? shrinkwrap,
  7. bool? selectable,
})

Implementation

const MarkdownReader({
  super.key,
  required this.markdownData,
  this.styleSheet,
  this.padding,
  this.decoration,
  this.shrinkwrap,
  this.selectable,
});