plainText property

String get plainText

Plain-text content of the line.

Implementation

String get plainText {
  final buffer = StringBuffer();
  for (final cell in cells) {
    if (cell.isZero) continue;
    if (cell.isEmpty) {
      buffer.write(' ');
      continue;
    }
    buffer.write(cell.content);
  }
  return buffer.toString();
}