notifyDependent method

  1. @override
void notifyDependent(
  1. covariant InheritedWidget oldWidget,
  2. Element dependent
)
override

Called by notifyClients for each dependent.

Calls dependent.didChangeDependencies() by default.

Subclasses can override this method to selectively call didChangeDependencies based on the value of getDependencies.

See also:

Implementation

@override
void notifyDependent(covariant InheritedWidget oldWidget, Element dependent) {
  final condition =
      getDependencies(dependent) as _InternalServiceListenCondition?;
  if (condition == null || condition(this) == true) {
    dependent.didChangeDependencies();
  }
}