clearRow method

void clearRow(
  1. int rowIndex
)

Remove an entire row from the collection

Implementation

void clearRow(int rowIndex) {
  _rows.remove(rowIndex);
}