removeAt method
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);
}
}
Removes a table from the worksheet at the specified index.
void removeAt(int index) {
if (index < _tableCollection.length) {
final ExcelTable table = _tableCollection[index];
remove(table);
}
}