Paragraph.text constructor
Paragraph.text()
Implementation
factory Paragraph.text(String rawContent, List<TextSpan> textSpans,
String fontFamily, TextAlign textAlign) {
return Paragraph(
type: "text",
rawContent: rawContent,
textSpans: textSpans,
imageUri: "",
jwMediaId: "",
youtubeVideoId: "",
soundcloudTrackId: "",
soudcloudEmbedCode: "",
hearthisAtTrackId: "",
fontFamily: fontFamily,
textAlign: textAlign);
}