DefaultStyles constructor

const DefaultStyles(
  1. {DefaultTextBlockStyle? h1,
  2. DefaultTextBlockStyle? h2,
  3. DefaultTextBlockStyle? h3,
  4. DefaultTextBlockStyle? h4,
  5. DefaultTextBlockStyle? h5,
  6. DefaultTextBlockStyle? h6,
  7. DefaultTextBlockStyle? paragraph,
  8. TextStyle? bold,
  9. TextStyle? subscript,
  10. TextStyle? superscript,
  11. TextStyle? italic,
  12. TextStyle? small,
  13. TextStyle? underline,
  14. TextStyle? strikeThrough,
  15. InlineCodeStyle? inlineCode,
  16. TextStyle? link,
  17. Color? color,
  18. DefaultTextBlockStyle? placeHolder,
  19. DefaultListBlockStyle? lists,
  20. DefaultTextBlockStyle? quote,
  21. DefaultTextBlockStyle? code,
  22. DefaultTextBlockStyle? indent,
  23. DefaultTextBlockStyle? align,
  24. DefaultTextBlockStyle? leading,
  25. TextStyle? sizeSmall,
  26. TextStyle? sizeLarge,
  27. TextStyle? sizeHuge}
)

Implementation

const DefaultStyles({
  this.h1,
  this.h2,
  this.h3,
  this.h4,
  this.h5,
  this.h6,
  this.paragraph,
  this.bold,
  this.subscript,
  this.superscript,
  this.italic,
  this.small,
  this.underline,
  this.strikeThrough,
  this.inlineCode,
  this.link,
  this.color,
  this.placeHolder,
  this.lists,
  this.quote,
  this.code,
  this.indent,
  this.align,
  this.leading,
  this.sizeSmall,
  this.sizeLarge,
  this.sizeHuge,
});