deleteColumn method
void
deleteColumn()
Removes the column at the currently focused cell.
Implementation
void deleteColumn() {
final info = focusedTableInfo;
if (info == null) return;
_documentController.removeTableColumn(info.blockIndex, info.col);
_editorWidgetState?.rebuild();
}