ContactOption

data class ContactOption(val id: UUID = UUID(), val image: ImageVector?, val title: StringResource, val action: (Context) -> Unit)

ContactOption data class used to represent a contact option.

Parameters

id

the unique identifier of the contact option

image

the image of the contact option

title

the title of the contact option

action

the action of the contact option

Constructors

Link copied to clipboard
constructor(id: UUID = UUID(), image: ImageVector?, title: StringResource, action: (Context) -> Unit)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val action: (Context) -> Unit
Link copied to clipboard
val id: UUID
Link copied to clipboard
Link copied to clipboard