concatText method
Concatenates the text of all TextContent items.
Implementation
String concatText() =>
whereType<TextContent>().map((c) => c.text).join();
Concatenates the text of all TextContent items.
String concatText() =>
whereType<TextContent>().map((c) => c.text).join();