effect static method
Notifies the debug system that an effect was executed.
This method should be called when an effect node target is executed.
Implementation
@pragma("vm:prefer-inline")
@pragma("wasm:prefer-inline")
@pragma("dart2js:prefer-inline")
static void effect(ReactiveNode target) {
assert(() {
getDebug(target)?.call(DebugNodeOperationType.effect, target);
JoltDevTools.handleNodeLifecycle(DebugNodeOperationType.effect, target);
return true;
}(), "");
}