markRebuildDependencies method
void
markRebuildDependencies()
inherited
Implementation
void markRebuildDependencies() {
if (!context.markDependenciesDirty(this)) {
// no context, or already dirty.
return;
}
for (final dependent in dependents) {
dependent.markRebuildDependencies();
}
}