addChangeNotifier method
Implementation
VoidCallback addChangeNotifier(ChangeNotifier changeNotifier,
{required VoidCallback onChange}) =>
addSubscription((removeSubscription) {
changeNotifier.addListener(onChange);
return () => changeNotifier.removeListener(onChange);
});