copyWith method

Input$RequestReviewsInput copyWith({
  1. String? clientMutationId()?,
  2. String? pullRequestId,
  3. List<String>? teamIds()?,
  4. bool? union()?,
  5. List<String>? userIds()?,
})

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());