isRowIdxBottomDragTarget method

  1. @override
bool isRowIdxBottomDragTarget(
  1. int? rowIdx
)
inherited

Implementation

@override
bool isRowIdxBottomDragTarget(int? rowIdx) {
  return rowIdx != null &&
      dragTargetRowIdx != null &&
      rowIdx == dragTargetRowIdx! + dragRows.length - 1;
}