IntComponentParameterValue constructor

const IntComponentParameterValue({
  1. required ID componentVariableID,
  2. required ModelParameterTypes type,
  3. required int value,
})

Implementation

const IntComponentParameterValue({
  required ID componentVariableID,
  required ModelParameterTypes type,
  required this.value,
}) : super(
        componentVariableID: componentVariableID,
        type: type,
      );