setCurrentSelectingPositionByCellKey method

  1. @override
void setCurrentSelectingPositionByCellKey(
  1. Key? cellKey, {
  2. bool notify = true,
})
inherited

Implementation

@override
void setCurrentSelectingPositionByCellKey(
  Key? cellKey, {
  bool notify = true,
}) {
  if (cellKey == null) {
    return;
  }

  setCurrentSelectingPosition(
    cellPosition: cellPositionByCellKey(cellKey),
    notify: notify,
  );
}