I had a json file, which I have converted to Dictionary. Based on the instructions I will generate a flow.
My json looks something like this:
   {
        "text":"Please tell me your first name",
        "var":"first_name"
    },
    {
        "calculated_variable":"True",
        "formula":"[]",
        "var":"rows"
    },
    {
        "text":"Enter the first row of the matrix.",
        "var":"rows[0]"
    }
So what I have to do is based on text user will enter a value. lets say for first block User entered "james". So "James" should be stored as first_name i.e first_name = "james".
Similarly considering the last block:
value should be stored as : row[0] = user_input
How will I make the "first_name" and "rows[0]" as variables as I have written above?
 
    