ReactiveNode constructor
ReactiveNode({
- required int flags,
- Link? deps,
- Link? depsTail,
- Link? subs,
- Link? subsTail,
Creates a node with the supplied link state and flags.
The optional deps and depsTail values seed this node's dependency
chain, while subs and subsTail seed its subscriber chain.
Implementation
ReactiveNode({
required this.flags,
this.deps,
this.depsTail,
this.subs,
this.subsTail,
});