copyWith method

Input$DisablePullRequestAutoMergeInput copyWith({
  1. String? clientMutationId()?,
  2. String? pullRequestId,
})

Implementation

Input$DisablePullRequestAutoMergeInput copyWith(
        {String? Function()? clientMutationId, String? pullRequestId}) =>
    Input$DisablePullRequestAutoMergeInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        pullRequestId:
            pullRequestId == null ? this.pullRequestId : pullRequestId);