JsonComponentParameterValue constructor

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

Implementation

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