ParagraphStyle constructor

ParagraphStyle({
  1. String? alignment,
  2. bool? avoidWidowAndOrphan,
  3. ParagraphBorder? borderBetween,
  4. ParagraphBorder? borderBottom,
  5. ParagraphBorder? borderLeft,
  6. ParagraphBorder? borderRight,
  7. ParagraphBorder? borderTop,
  8. String? direction,
  9. String? headingId,
  10. Dimension? indentEnd,
  11. Dimension? indentFirstLine,
  12. Dimension? indentStart,
  13. bool? keepLinesTogether,
  14. bool? keepWithNext,
  15. double? lineSpacing,
  16. String? namedStyleType,
  17. bool? pageBreakBefore,
  18. Shading? shading,
  19. Dimension? spaceAbove,
  20. Dimension? spaceBelow,
  21. String? spacingMode,
  22. List<TabStop>? tabStops,
})

Implementation

ParagraphStyle({
  this.alignment,
  this.avoidWidowAndOrphan,
  this.borderBetween,
  this.borderBottom,
  this.borderLeft,
  this.borderRight,
  this.borderTop,
  this.direction,
  this.headingId,
  this.indentEnd,
  this.indentFirstLine,
  this.indentStart,
  this.keepLinesTogether,
  this.keepWithNext,
  this.lineSpacing,
  this.namedStyleType,
  this.pageBreakBefore,
  this.shading,
  this.spaceAbove,
  this.spaceBelow,
  this.spacingMode,
  this.tabStops,
});