SignalOccurrence constructor

SignalOccurrence({
  1. required String name,
  2. required int width,
  3. String? direction,
  4. String? value,
  5. bool isComputed = false,
  6. int? portIndex,
  7. Map<String, dynamic>? logicType,
})

Creates a SignalOccurrence with the given properties.

Implementation

SignalOccurrence({
  required this.name,
  required this.width,
  this.direction,
  this.value,
  this.isComputed = false,
  this.portIndex,
  this.logicType,
});