row method

Table row(
  1. List<Object?> cells
)

Adds a row to the table.

Implementation

Table row(List<Object?> cells) {
  _rows.add(cells.map((c) => c?.toString() ?? '').toList());
  return this;
}