Markdown constructor

const Markdown({
  1. Key? key,
  2. required String data,
  3. required LinkTap linkTap,
  4. required WidgetImage image,
  5. double? maxWidth,
  6. TextStyle? textStyle,
})

Implementation

const Markdown({
  Key? key,
  required this.data,
  required this.linkTap,
  required this.image,
  this.maxWidth,
  this.textStyle,
}) : super(key: key);