ReactiveNode constructor

ReactiveNode({
  1. required int flags,
  2. Link? deps,
  3. Link? depsTail,
  4. Link? subs,
  5. 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,
});