ParagraphStyle constructor

ParagraphStyle({
  1. String? alignment,
  2. String? direction,
  3. Dimension? indentEnd,
  4. Dimension? indentFirstLine,
  5. Dimension? indentStart,
  6. double? lineSpacing,
  7. Dimension? spaceAbove,
  8. Dimension? spaceBelow,
  9. String? spacingMode,
})

Implementation

ParagraphStyle({
  this.alignment,
  this.direction,
  this.indentEnd,
  this.indentFirstLine,
  this.indentStart,
  this.lineSpacing,
  this.spaceAbove,
  this.spaceBelow,
  this.spacingMode,
});