clean method

void clean()

Remove all notifiers and clear the list.

Implementation

void clean() {
  for (final notifier in _notifiers) {
    notifier.removeListener(_onChildChanged);
  }
  _notifiers.clear();
  notifyListeners();
}