0

[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

nat101
  • 365
  • 1
  • 5
  • 11

1 Answers1

1

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)

vaind
  • 1,642
  • 10
  • 19