setIsDraggingRow method

  1. @override
void setIsDraggingRow(
  1. bool flag, {
  2. bool notify = true,
})
inherited

Implementation

@override
void setIsDraggingRow(
  bool flag, {
  bool notify = true,
}) {
  if (isDraggingRow == flag) {
    return;
  }

  _state._isDraggingRow = flag;

  _clearDraggingState();

  notifyListeners(notify, setIsDraggingRow.hashCode);
}