addColumn method

void addColumn()

Implementation

void addColumn() {
  for (final List<String> row in rows) {
    row.add("");
  }
}