MarkdownThemeData constructor

const MarkdownThemeData({
  1. TextStyle? h1Style,
  2. TextStyle? h2Style,
  3. TextStyle? h3Style,
  4. TextStyle? h4Style,
  5. TextStyle? h5Style,
  6. TextStyle? h6Style,
  7. TextStyle? pStyle,
  8. TextStyle? codeStyle,
  9. TextStyle? blockquoteStyle,
  10. TextStyle? linkStyle,
  11. TextStyle? strongStyle,
  12. TextStyle? emStyle,
  13. Color? backgroundColor,
  14. Color? foregroundColor,
  15. Color? accentColor,
  16. Color? borderColor,
})

Implementation

const MarkdownThemeData({
  this.h1Style,
  this.h2Style,
  this.h3Style,
  this.h4Style,
  this.h5Style,
  this.h6Style,
  this.pStyle,
  this.codeStyle,
  this.blockquoteStyle,
  this.linkStyle,
  this.strongStyle,
  this.emStyle,
  this.backgroundColor,
  this.foregroundColor,
  this.accentColor,
  this.borderColor,
});