addNotifier method
Implementation
void addNotifier(ChangeNotifier notifier) {
if (!_notifiers.contains(notifier)) {
_notifiers.add(notifier);
notifier.addListener(_update);
}
}
void addNotifier(ChangeNotifier notifier) {
if (!_notifiers.contains(notifier)) {
_notifiers.add(notifier);
notifier.addListener(_update);
}
}