SelectionState constructor

const SelectionState({
  1. required Set<double> selectedRowIds,
  2. double? focusedRowId,
  3. required Set<String> selectedCellIds,
  4. required SelectionMode mode,
})

Implementation

const factory SelectionState({
  required Set<double> selectedRowIds,
  double? focusedRowId,
  required Set<String> selectedCellIds,
  required SelectionMode mode,
}) = _SelectionState;