KwikListItemAction

data class KwikListItemAction(val id: UUID = UUID.randomUUID(), val title: String, val description: String = "", val icon: Any? = null, val tint: Color? = null, val action: () -> Unit = {})

The data class representing a list item action.

Constructors

Link copied to clipboard
constructor(id: UUID = UUID.randomUUID(), title: String, description: String = "", icon: Any? = null, tint: Color? = null, action: () -> Unit = {})

Properties

Link copied to clipboard
val action: () -> Unit
Link copied to clipboard
Link copied to clipboard
val icon: Any? = null
Link copied to clipboard
val id: UUID
Link copied to clipboard
val tint: Color? = null
Link copied to clipboard