copyWith method
JsonComponentParameterValue
copyWith({
- ID? componentVariableID,
- ModelParameterTypes? type,
- Map<
String, dynamic> ? value,
override
Implementation
@override
JsonComponentParameterValue copyWith({
ID? componentVariableID,
ModelParameterTypes? type,
Map<String, dynamic>? value,
}) {
return JsonComponentParameterValue(
componentVariableID: componentVariableID ?? this.componentVariableID,
type: type ?? this.type,
value: value ?? this.value,
);
}