markRebuildDependencies method
inherited
Implementation
void markRebuildDependencies() {
if (context == null || !context.markDependenciesDirty(this)) {
return;
}
for (final dependent in _dependents) {
dependent.markRebuildDependencies();
}
}