When using isar and freezed together, how should I update the data?
When changing the order of categories, things don’t work as expected. ReorderableListView is used to change the order, but instead of changing the order normally, new data is created. I defined the object as immutable using frozen, but I think giving up immutable would be the way to go. Is there a better way?
When using isar and frozen together, how should I update the data? (flutter)
When changing the order of categories, things don’t work as expected. ReorderableListView is used to change the order, but instead of changing the order normally, new data is created. I defined the object as immutable using frozen, but I think giving up immutable would be the way to go. Is there a better way?