toText method

  1. @override
String toText()
override

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