copyWith method

PublishedWorkflowId copyWith({
  1. String? entityId,
  2. String? name,
})

Implementation

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