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