addRow method

void addRow(
  1. Iterable<String?> row
)

Adds a row to the table. Can be called multiple times.

Implementation

void addRow(final Iterable<String?> row) {
  _rows.add(List.from(row));
}