copyWith method
Implementation
PublishedWorkflowId copyWith({String? entityId, String? name}) {
return PublishedWorkflowId(
entityId: entityId ?? this.entityId,
name: name ?? this.name,
);
}
PublishedWorkflowId copyWith({String? entityId, String? name}) {
return PublishedWorkflowId(
entityId: entityId ?? this.entityId,
name: name ?? this.name,
);
}