rows method

Table rows(
  1. List<List<Object?>> rows
)

Adds multiple rows to the table.

Implementation

Table rows(List<List<Object?>> rows) {
  for (final r in rows) {
    row(r);
  }
  return this;
}