removeColumn method

void removeColumn(
  1. String sheet,
  2. int columnIndex
)

Removes the column at columnIndex from sheet.

Implementation

void removeColumn(String sheet, int columnIndex) {
  if (columnIndex >= 0 && _sheetMap[sheet] != null) {
    _sheetMap[sheet]!.removeColumn(columnIndex);
  }
}