deleteRow method

void deleteRow()

Removes the row at the currently focused cell.

Implementation

void deleteRow() {
  final info = focusedTableInfo;
  if (info == null) return;
  _documentController.removeTableRow(info.blockIndex, info.row);
  _editorWidgetState?.rebuild();
}