copyWith method

Input$ApproveDeploymentsInput copyWith({
  1. String? clientMutationId()?,
  2. String? comment()?,
  3. List<String>? environmentIds,
  4. String? workflowRunId,
})

Implementation

Input$ApproveDeploymentsInput copyWith(
        {String? Function()? clientMutationId,
        String? Function()? comment,
        List<String>? environmentIds,
        String? workflowRunId}) =>
    Input$ApproveDeploymentsInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        comment: comment == null ? this.comment : comment(),
        environmentIds:
            environmentIds == null ? this.environmentIds : environmentIds,
        workflowRunId:
            workflowRunId == null ? this.workflowRunId : workflowRunId);