Paragraph constructor

Paragraph({
  1. String? text,
  2. TextAlign textAlign = TextAlign.justify,
  3. TextStyle? style,
  4. EdgeInsetsGeometry margin = const EdgeInsets.only(bottom: 5.0 * PdfPageFormat.mm),
  5. EdgeInsetsGeometry? padding,
})

Implementation

Paragraph({
  this.text,
  this.textAlign = TextAlign.justify,
  this.style,
  this.margin = const EdgeInsets.only(bottom: 5.0 * PdfPageFormat.mm),
  this.padding,
});