srcConnections property

  1. @override
Iterable<Logic> srcConnections
override

All Logics driving this, if any.

For a simple Logic, this will simply be an Iterable containing either nothing (if no driver), or one element equal to srcConnection. If there are multiple drivers (e.g. this is an instance of a special type/subclass of Logic), then there may be multiple drivers.

Implementation

@override
Iterable<Logic> get srcConnections => {
      for (final element in elements) ...element.srcConnections
    }.toList(growable: false);