setDragTargetRowIdx method

  1. @override
void setDragTargetRowIdx(
  1. int? rowIdx, {
  2. bool notify = true,
})
inherited

Implementation

@override
void setDragTargetRowIdx(
  int? rowIdx, {
  bool notify = true,
}) {
  if (dragTargetRowIdx == rowIdx) {
    return;
  }

  _state._dragTargetRowIdx = rowIdx;

  notifyListeners(notify, setDragTargetRowIdx.hashCode);
}