SystemVerilogParameterDefinition constructor

const SystemVerilogParameterDefinition(
  1. String name, {
  2. required String type,
  3. required String defaultValue,
})

Creates a new SystemVerilog parameter definition with name of the provided type with the defaultValue.

Implementation

const SystemVerilogParameterDefinition(this.name,
    {required this.type, required this.defaultValue});