Hello, I'm starting my journey with Flutter Flow and I stoped here:
I receive category data from API call. JSON ('id': INT, 'name': STRING), after that I present only 'name' parameter on the CheckBoxGroup/ChoiceChips widget. When user makes the choice, the category name is saved into AppState (choosedCategory, LIST, DataStructure: 'name': STRING, 'id': INT).
And now I have a problem because I need to send chosen category as an ID, but unfortunately I have only name in my AppState. Is it possible to save also ID after user chooses name? Or how can I do some mapping and add ID into AppState?