SelectableMarkdownText constructor

SelectableMarkdownText({
  1. required String data,
  2. Key? key,
  3. AnsiRendererOptions? options,
  4. Style? textStyle,
  5. Style? selectionHighlightStyle,
  6. bool softWrap = true,
  7. int? maxWidth,
  8. SelectionController? controller,
})

Implementation

SelectableMarkdownText({
  required this.data,
  super.key,
  this.options,
  this.textStyle,
  this.selectionHighlightStyle,
  this.softWrap = true,
  this.maxWidth,
  this.controller,
});