I need to listen to a callback or something after every notifyListeners called, while i am using Change notifier
it's is something like WidgetsBinding.instance.addPostFrameCallback((_) but this in case of using setState or rendering the frame for the first time
So it appears to that you can register
WidgetsBinding.instance.addPostFrameCallback((_)under theconsumerwidget forChangeNotifierProvider, so in that case after everynotifyListenersthe consumer will be called and a callback for it will be registered after it the frame is already rendered.