clearCurrentCell method

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

set currentCell to null

Implementation

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

  _state._currentCell = null;

  _state._currentCellPosition = null;

  notifyListeners(notify, clearCurrentCell.hashCode);
}