You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 29, 2023. It is now read-only.
documents.A should now be collections.A.documents.A
final client =Client();
final realtime =Realtime(client);
final subscription = realtime.subscribe(['documents.A', 'files']);
subscription.stream.listen((response) {
// Callback will be executed on changes for documents A and all files.print(response);
})
I'm going to submit a pull request that fixes this shortly.