add method
Add row to the row collection.
Implementation
Row add() {
final Row row = Row(_worksheet);
innerList.add(row);
row.index = innerList.length;
return row;
}
Add row to the row collection.
Row add() {
final Row row = Row(_worksheet);
innerList.add(row);
row.index = innerList.length;
return row;
}