DialogShownState
class DialogShownState<ParametersT, ResultT>(val parameters: ParametersT, val resultChannel: SendChannel<ResultT>) : PromptDialogModel.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 response should be sent.