clearSelection method

void clearSelection()

Clear all selection

Implementation

void clearSelection() {
  _state = _state.copyWith(
    selectedRowIds: {},
    selectedRowsData: {},
  );
  notifyListeners();

  // Notify callback if registered
  _onSelectionChanged?.call([]);
}