toText method
Renders the row and its children as plain text.
Each child’s text representation is separated by " | ".
Implementation
@override
String toText() {
final columnTexts = children.map((child) => child.toText()).toList();
return columnTexts.join(' | ');
}