insertCell method
Implementation
TableCellElement insertCell(int index) {
final cell = TableCellElement();
if (index == cells.length) {
insertBefore(cell, null);
return cell;
}
insertBefore(cell, cells[index]);
return cell;
}
TableCellElement insertCell(int index) {
final cell = TableCellElement();
if (index == cells.length) {
insertBefore(cell, null);
return cell;
}
insertBefore(cell, cells[index]);
return cell;
}