I can't seem to find a way to post a message to the user in the FormFlow based on how the user answers a bool. To post Fields based a previous answer you can use:
.Field(new FieldReflector<GetQuoteDialog>(nameof(Dothis))
.SetActive((state) => state.isDone== true))
However I haven't found a way to do the same with the .Message(). So say if I want to just send the message "Congrats!", then post the next question in the formflow.
So the dialog I would like to play out would be like:
- true/false question
- user answers true
- post message "Congrats" if user answers true
- ask next true/false question
Is there a way that I am just missing?