watchSubscribedGroups method

Stream<List<Group>> watchSubscribedGroups()

Watches only the groups the local node is subscribed to.

Implementation

Stream<List<Group>> watchSubscribedGroups() {
  return (select(groups)
        ..where((t) => t.isSubscribed.equals(true)))
      .watch();
}