toText method
Converts the row to a plain text representation.
Each child is separated by a vertical bar " | ".
Implementation
@override
String toText() {
final columnTexts = children.map((child) => child.toText()).toList();
return columnTexts.join(' | ');
}