sources property
Iterable<ReadonlySignal>
get
sources
@internal for testing getter to track all the signals currently subscribed in the effect
Implementation
Iterable<ReadonlySignal> get sources sync* {
_Node? root = _sources;
for (var node = root; node != null; node = node._nextSource) {
yield node._source;
}
}