insertCell method

TableCellElement insertCell(
  1. int index
)

Implementation

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