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)