Returns the first Paragraph child of node, or null if none.
node
Paragraph? findFirstParagraph(FNode node) { for (final c in childrenOf(node)) { if (c is Paragraph) return c; } return null; }