1

I have used family to cache all data.

final provider =
    StateNotifierProvider.family((ref, data) => ListNotifier(ref, data));

I want to refresh all families of these providers.

my provider receives an object and returns the same type of object. An object has a generic type of list which is the same type of object. I update every single thing in my nested objects. but, now I have to need to refresh all family providers.

1 Answers1

3

Remi Rousselet answered this question