copyWith method

ShowDialogAction copyWith({
  1. ID? componentID,
  2. List<ComponentParameterField>? passingParameterValues,
})

Implementation

ShowDialogAction copyWith({
  ID? componentID,
  List<ComponentParameterField>? passingParameterValues,
}) {
  return ShowDialogAction(
    id: id,
    componentID: componentID ?? this.componentID,
    passingParameterValues:
        passingParameterValues ?? this.passingParameterValues,
  );
}