DefaultStyles constructor

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

Implementation

DefaultStyles({
  this.h1,
  this.h2,
  this.h3,
  this.paragraph,
  this.bold,
  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,
});