Rank 2: Process
Hi,
I've many realtime provider on my app, but something some of them return null when subscribing, so I never get any update.
I use riverpod for managing my provider. I've found a way to solve it by creating many instance for my realtime provider, but I don't know if it is a good practice.
Can I create many realtime client like this :
final realtime = Realtime(client);
and create a subscription
Or the best way is to create only one client and many subscription ?