copyWith method

  1. @override
JsonComponentParameterValue copyWith({
  1. ID? componentVariableID,
  2. ModelParameterTypes? type,
  3. 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,
  );
}