Cannot get conversationState property value inside a setTimeOut
问题 I am using botBuilder SDK 4.3 for Node js. I created a conversationState property inside the constructor of a dialog. In some of the dialog steps I set a value to that property. In an other step, I tried to get the value of that property inside a setTimeOut like So. // Imports ... class Reservation extends ComponentDialog { constructor(id, conversationState, userState, dialogProps) { super(id); this.id = id; this.conversationState = conversationState; this.userState = userState; this