isCellEditing method

bool isCellEditing(
  1. double rowId,
  2. int columnId
)

Returns true if the cell at rowId / columnId is being edited.

Implementation

bool isCellEditing(double rowId, int columnId) {
  return editingCellId == '${rowId}_$columnId';
}