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
Example:
final node = ReactiveNode(flags: ReactiveFlags.mutable);
Implementation
ReactiveNode({
required this.flags,
this.deps,
this.depsTail,
this.subs,
this.subsTail,
});