updateCurrentCellPosition method

  1. @override
void updateCurrentCellPosition({
  1. bool notify = true,
})
inherited

Implementation

@override
void updateCurrentCellPosition({bool notify = true}) {
  if (currentCell == null) {
    return;
  }

  setCurrentCellPosition(
    cellPositionByCellKey(currentCell!.key),
    notify: false,
  );

  notifyListeners(notify, updateCurrentCellPosition.hashCode);
}