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) {
_getDebug(target)?.call(DebugNodeOperationType.set, target);
JoltDevTools._handleNodeLifecycle(DebugNodeOperationType.set, target);
}