ReactiveNode constructor
Creates a reactive node with the given configuration.
Parameters:
deps: First dependency linkdepsTail: Last dependency linksubs: First subscriber linksubsTail: Last subscriber linkflags: Reactive flags for this node
Implementation
ReactiveNode({
this.deps,
this.depsTail,
this.subs,
this.subsTail,
required this.flags,
});