copyWith method

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

Implementation

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