notifyEffectScope method
Implementation
bool notifyEffectScope(EffectScope scope) {
final flags = scope.flags;
if ((flags & SubscriberFlags.pendingEffect) != 0) {
processPendingInnerEffects(scope, scope.flags);
return true;
}
return false;
}