SortState

@Immutable
data class SortState(val key: String = "", val order: SortOrder = SortOrder.NONE)(source)

Current sort configuration for a single column.

Parameters

key

The column key to which sorting is applied. Empty means no column selected.

order

The direction of sorting.

Constructors

Link copied to clipboard
constructor(key: String = "", order: SortOrder = SortOrder.NONE)

Properties

Link copied to clipboard
val key: String
Link copied to clipboard