toText method
Renders the column and its children as plain text.
Each child is separated by two newlines (\n\n).
Implementation
@override
String toText() {
  final childrenText = children.map((child) => child.toText()).toList();
  if (reverse) {
    childrenText.reversed;
  }
  return childrenText.join('\n\n');
}