ReactiveNode constructor

ReactiveNode({
  1. Link? deps,
  2. Link? depsTail,
  3. Link? subs,
  4. Link? subsTail,
  5. required int flags,
})

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 list
  • subs: Head of the subscribers linked list (nodes that depend on this node)
  • subsTail: Tail of the subscribers linked list
  • flags: Bit flags representing the node's state and properties

Implementation

ReactiveNode({
  this.deps,
  this.depsTail,
  this.subs,
  this.subsTail,
  required this.flags,
});