DoubleComponentParameterValue constructor

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

Implementation

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