Using Flutter with GetX.
I have a GetX controller for items and I have a list of items.
When I use
final ItemController c = Get.find();
it uses the same controller for each item in the list and the values within every item get overwritten.
How can I get a unique controller for each item in the list? Is there a "Key" concept?