getRenderedString method
Returns a string of what would be rendered by this block
Implementation
String getRenderedString() {
if (_children != null) {
return _children!.map((e) => e.getRenderedString()).join();
} else {
return _text ?? "";
}
}