copyWith method
Implementation
Input$RequestReviewsInput copyWith(
{String? Function()? clientMutationId,
String? pullRequestId,
List<String>? Function()? teamIds,
bool? Function()? union,
List<String>? Function()? userIds}) =>
Input$RequestReviewsInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
pullRequestId:
pullRequestId == null ? this.pullRequestId : pullRequestId,
teamIds: teamIds == null ? this.teamIds : teamIds(),
union: union == null ? this.union : union(),
userIds: userIds == null ? this.userIds : userIds());