set static method
Notifies the debug system that a reactive node's value was set (set operation).
This method should be called when the value of target is written to.
Implementation
@pragma("vm:prefer-inline")
@pragma("wasm:prefer-inline")
@pragma("dart2js:prefer-inline")
static void set(ReactiveNode target) {
assert(() {
getDebug(target)?.call(DebugNodeOperationType.set, target);
JoltDevTools.handleNodeLifecycle(DebugNodeOperationType.set, target);
return true;
}(), "");
}