copyWith method

Input$UpdatePullRequestBranchInput copyWith({
  1. String? clientMutationId()?,
  2. String? expectedHeadOid()?,
  3. String? pullRequestId,
})

Implementation

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