copyWith method
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);