GptMarkdownConfig constructor

const GptMarkdownConfig({
  1. TextStyle? style,
  2. TextDirection textDirection = TextDirection.ltr,
  3. void onLinkTab(
    1. String url,
    2. String title
    )?,
  4. TextAlign? textAlign,
  5. TextScaler? textScaler,
  6. String latexWorkaround(
    1. String tex
    )?,
  7. LatexBuilder? latexBuilder,
  8. bool followLinkColor = false,
  9. CodeBlockBuilder? codeBuilder,
  10. SourceTagBuilder? sourceTagBuilder,
  11. HighlightBuilder? highlightBuilder,
  12. OrderedListBuilder? orderedListBuilder,
  13. UnOrderedListBuilder? unOrderedListBuilder,
  14. LinkBuilder? linkBuilder,
  15. ImageBuilder? imageBuilder,
  16. int? maxLines,
  17. TextOverflow? overflow,
  18. List<MarkdownComponent>? components,
  19. List<MarkdownComponent>? inlineComponents,
})

Implementation

const GptMarkdownConfig({
  this.style,
  this.textDirection = TextDirection.ltr,
  this.onLinkTab,
  this.textAlign,
  this.textScaler,
  this.latexWorkaround,
  this.latexBuilder,
  this.followLinkColor = false,
  this.codeBuilder,
  this.sourceTagBuilder,
  this.highlightBuilder,
  this.orderedListBuilder,
  this.unOrderedListBuilder,
  this.linkBuilder,
  this.imageBuilder,
  this.maxLines,
  this.overflow,
  this.components,
  this.inlineComponents,
});