Rank 1: Thread
In order to get notifications (per user) I set it up to subscribe to any event taken place in their respective document in a collection. I first subscribe to the collection then listen via "databases..collections..documents". My only issue is that when I change something in the document I am not getting anything printed. The following code :void subscribe() async { final String getId = Boxes.getMainUser().values.first.id; subscription = ApiService.instance!.realTime.subscribe([ 'databases.[637044216b476709d41d].collections.[63704487a16832bfd730].documents.[$getId]' ]); subscription.stream.listen((response) { print("SOmehting happening"); if (response.events.contains('databases.*.collections.*.documents')) { print("SOmehting happening"); } }); }