appendRow method

dynamic appendRow(
  1. List row
)

Appends row iterables just post the last filled rowIndex.

Implementation

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