inputs property

Map<String, Logic> inputs

A map from input port names to this Module to corresponding Logic signals.

Note that inputs should only be used to drive hardware within a Module. To access the signal that drives these inputs, use inputSource.

Implementation

Map<String, Logic> get inputs => UnmodifiableMapView<String, Logic>(_inputs);