ReactiveNode constructor
Creates a new ReactiveNode with the given dependencies, subscribers, and flags.
deps: Head of the dependencies linked list (nodes this node depends on)depsTail: Tail of the dependencies linked listsubs: Head of the subscribers linked list (nodes that depend on this node)subsTail: Tail of the subscribers linked listflags: Bit flags representing the node's state and properties
Implementation
ReactiveNode({
this.deps,
this.depsTail,
this.subs,
this.subsTail,
required this.flags,
});