ports property
Returns only signals that are ports (have a direction).
Implementation
List<SignalOccurrence> get ports => signals.where((s) => s.isPort).toList();
Returns only signals that are ports (have a direction).
List<SignalOccurrence> get ports => signals.where((s) => s.isPort).toList();