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