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