StatefulItem

data class StatefulItem<T>(item: T, selected: Boolean, sorting: Sorting)

This class is meant for combining the data of one row with the current state specific properties like the sorting strategy or whether the row is currently selected.

Constructors

StatefulItem
Link copied to clipboard
js
fun <T> StatefulItem(item: T, selected: Boolean, sorting: Sorting)

Properties

item
Link copied to clipboard
js
val item: T
selected
Link copied to clipboard
js
val selected: Boolean
sorting
Link copied to clipboard
js
val sorting: Sorting