removeAt method

void removeAt(
  1. int index
)

Removes a table from the worksheet at the specified index.

Implementation

void removeAt(int index) {
  if (index < _tableCollection.length) {
    final ExcelTable table = _tableCollection[index];
    remove(table);
  }
}