MarkdownGenerator constructor

MarkdownGenerator({
  1. Iterable<InlineSyntax> inlineSyntaxList = const [],
  2. Iterable<BlockSyntax> blockSyntaxList = const [],
  3. EdgeInsets linesMargin = const EdgeInsets.symmetric(vertical: 8),
  4. List<SpanNodeGeneratorWithTag> generators = const [],
  5. SpanNodeAcceptCallback? onNodeAccepted,
  6. ExtensionSet? extensionSet,
  7. TextNodeGenerator? textGenerator,
  8. SpanNodeBuilder? spanNodeBuilder,
  9. RichTextBuilder? richTextBuilder,
  10. RegExp? splitRegExp,
})

Implementation

MarkdownGenerator({
  this.inlineSyntaxList = const [],
  this.blockSyntaxList = const [],
  this.linesMargin = const EdgeInsets.symmetric(vertical: 8),
  this.generators = const [],
  this.onNodeAccepted,
  this.extensionSet,
  this.textGenerator,
  this.spanNodeBuilder,
  this.richTextBuilder,
  this.splitRegExp,
});