PollOptionItem

data class PollOptionItem(val title: String, val key: String = UUID.randomUUID().toString(), val pollOptionError: PollOptionError? = null)

The option item for creating a poll.

Constructors

Link copied to clipboard
constructor(title: String, key: String = UUID.randomUUID().toString(), pollOptionError: PollOptionError? = null)

Properties

Link copied to clipboard
val key: String

The key that identifies this poll item.

Link copied to clipboard

Indicates this option has an error.

Link copied to clipboard

The title of this poll item.