addNotifier method

void addNotifier(
  1. ChangeNotifier notifier
)

Implementation

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