DropdownOption

data class DropdownOption(val value: String, val enabled: Boolean = true)

Represents an option in a dropdown.

Parameters

value

The value of the option to be displayed.

enabled

Whether the option is enabled or not.

Constructors

Link copied to clipboard
constructor(value: String, enabled: Boolean = true)

Properties

Link copied to clipboard
val enabled: Boolean = true
Link copied to clipboard