add method

Row add()

Add row to the row collection.

Implementation

Row add() {
  final Row row = Row(_worksheet);
  innerList.add(row);
  row.index = innerList.length;
  return row;
}