ParagraphSplitter typedef
A splitter function that returns a list of paragraphs from source.
In English, the source text is split at:
U+000A, NewLine;U+000B, VerticalTabulation;U+000C, FormFeed; andU+000D, CarriageReturn.
Implementation
typedef ParagraphSplitter = List<String> Function(String source);