appendRow method

void appendRow(
  1. List<CellValue?> row
)

Appends row iterables just post the last filled rowIndex.

Implementation

void appendRow(List<CellValue?> row) {
  int targetRow = maxRows;
  insertRowIterables(row, targetRow);
}