TextComponentParameterValue constructor

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

Implementation

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