Returns true if this node only have TextNode nodes.
true
bool get hasOnlyTextNodes { return _content?.every((n) => n is TextNode) ?? false; }