MarkdownText constructor

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

Implementation

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