StatefulItem

data class StatefulItem<T>(    val item: T,     val selected: Boolean,     val 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

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

Properties

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