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