srcConnections property

Iterable<Logic> srcConnections
latefinal

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

late final Iterable<Logic> srcConnections =
    UnmodifiableListView(_srcConnections);