toText method

  1. @override
String toText()
override

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(' | ');
}