copyWith method

  1. @override
TextComponentParameterValue copyWith({
  1. ID? componentVariableID,
  2. ModelParameterTypes? type,
  3. String? value,
})
override

Implementation

@override
TextComponentParameterValue copyWith({
  ID? componentVariableID,
  ModelParameterTypes? type,
  String? value,
}) {
  return TextComponentParameterValue(
    componentVariableID: componentVariableID ?? this.componentVariableID,
    type: type ?? this.type,
    value: value ?? this.value,
  );
}