fromInitialState

fun fromInitialState(state: InitialTableState?, columnVisibility: VisibilityState? = null, columnOrder: ColumnOrderState? = null, columnPinning: ColumnPinningState? = null, rowPinning: RowPinningState? = null, columnFilters: ColumnFiltersState? = null, sorting: SortingState? = null, expanded: ExpandedState? = null, grouping: GroupingState? = null, columnSizing: ColumnSizingState? = null, columnSizingInfo: ColumnSizingInfoState? = null, pagination: PaginationState? = null, rowSelection: RowSelectionState? = null): TableState

Materialises state into a TableState, then overrides the passed named slices.

Used by feature getInitialState implementations to express "default first, then state wins, then any slice this feature is authoritative for". Pass null for a slice to leave the value produced from state in place.

globalFilter is not exposed here because Any? cannot distinguish "no override" from "override with null"; features needing it use toTableState + .copy directly.