DialogShownState

class DialogShownState<ParametersT, ResultT>(val parameters: ParametersT, val resultChannel: SendChannel<ResultT>) : SinglePromptModel.DialogState<ParametersT, ResultT>

Prompt dialog should be displayed.

Parameters

parameters

are dialog-specific parameters to present/interact with the user.

resultChannel

is a SendChannel where user input should be sent.

Constructors

Link copied to clipboard
constructor(parameters: ParametersT, resultChannel: SendChannel<ResultT>)

Properties

Link copied to clipboard
Link copied to clipboard
val resultChannel: SendChannel<ResultT>