isSelectedAt method

bool isSelectedAt(
  1. int rowIndex
)

Returns whether the row at rowIndex is selected.

rowIndex is zero-based and refers to the current dataset view, after filtering and sorting. This matches normal dataset navigation semantics.

Implementation

bool isSelectedAt(int rowIndex) =>
    _dataSet._selectionCoordinator.isSelectedAt(rowIndex);