android-components / mozilla.components.concept.engine.prompt / PromptRequest / MenuChoice

MenuChoice

data class MenuChoice : PromptRequest (source)

Value type that represents a request for a menu choice prompt.

Constructors

<init>

MenuChoice(choices: Array<Choice>, onSelect: (Choice) -> Unit)

Value type that represents a request for a menu choice prompt.

Properties

choices

val choices: Array<Choice>

All the possible options.

onSelect

val onSelect: (Choice) -> Unit

A callback indicating which option was selected.