KeyMetadata constructor

const KeyMetadata({
  1. int? headerLevel,
  2. DividerMeta? divider,
  3. CalloutMeta? callout,
  4. CodeBlockMeta? codeBlock,
  5. ListMeta? listMeta,
  6. TableMeta? tableMeta,
  7. EmphasisMeta? emphasis,
  8. XmlMeta? xmlMeta,
  9. YamlMeta? yamlMeta,
  10. JsonMeta? jsonMeta,
  11. WhitespaceMeta? whitespace,
  12. Map<String, KeyMetadata>? children,
})

Creates a KeyMetadata instance.

Implementation

const KeyMetadata({
  this.headerLevel,
  this.divider,
  this.callout,
  this.codeBlock,
  this.listMeta,
  this.tableMeta,
  this.emphasis,
  this.xmlMeta,
  this.yamlMeta,
  this.jsonMeta,
  this.whitespace,
  this.children,
});