moveRowsByOffset method

  1. @override
void moveRowsByOffset(
  1. List<PlutoRow> rows,
  2. double offset, {
  3. bool notify = true,
})
inherited

Implementation

@override
void moveRowsByOffset(
  List<PlutoRow> rows,
  double offset, {
  bool notify = true,
}) {
  int? indexToMove = getRowIdxByOffset(offset);

  moveRowsByIndex(rows, indexToMove, notify: notify);
}