Hi Friends - I am quering a firestore collection say "user" on page load. each user document has fields such as name, age etc. Then on my page I show choicechips that dynamically generate options with user's name as the string. so for ex. if there were 4 documents with users as bob, mary, alice and joe then 4 choicechips with these values will be shown. Now what I want to do is when my app user selects multiple choices say joe and alice, I would like to read from the widget state document reference for these 2 selections. In short, when choice chip is rendered I want a user document reference be attached to it (but not visible).
how do we achieve this? if there are better ideas please let me know. I don't want to build logic that read choice chip selection value and then finds the corresponding user document reference as it seems overkill.