[Flutter/Dart] What kind of information can I get from the Store.watch() stream? Can I get entity type and entity id of insert/update/delete? Do I get a timestamp as well?
Thanks
-nat
[Flutter/Dart] What kind of information can I get from the Store.watch() stream? Can I get entity type and entity id of insert/update/delete? Do I get a timestamp as well?
Thanks
-nat
Store.watch<EntityT>()
gives you changes for a given entity type (dart type). There's currently no way to get the exact object IDs for local changes - this is only present for changes received via ObjectBox Sync (on a SyncClient.changeEvents
)