ListItem

data class ListItem(    val id: String,     val item: String,     val description: String? = null)

Represents one item in the ListPicker.

Constructors

Link copied to clipboard
fun ListItem(    id: String,     item: String,     description: String? = null)

Properties

Link copied to clipboard
val description: String? = null

Description of the item.

Link copied to clipboard
val id: String

Unique item identifier. Not visible to the recipient.

Link copied to clipboard
val item: String

Display value for the item.