deleteCell method

void deleteCell(
  1. int index
)

Implementation

void deleteCell(int index) {
  cells[index].remove();
}