Paragraph.newLine constructor
Implementation
factory Paragraph.newLine({Map<String, dynamic>? blockAttributes}) {
return Paragraph(
lines: <Line>[
Line.newLine(),
],
blockAttributes: blockAttributes,
type: ParagraphType.lineBreak,
)..seal();
}