notifyChanged method

void notifyChanged()

Use this method to notify listeners of deeper changes, e.g. when a value is added to or removed from a set which is stored in the value of a ValueNotifier<Set<T>>.

Implementation

void notifyChanged() {
  // ignore: invalid_use_of_protected_member, invalid_use_of_visible_for_testing_member
  valueNotifier.notifyListeners();
}