copyWith method

Input$RemoveUpvoteInput copyWith({
  1. String? clientMutationId()?,
  2. String? subjectId,
})

Implementation

Input$RemoveUpvoteInput copyWith(
        {String? Function()? clientMutationId, String? subjectId}) =>
    Input$RemoveUpvoteInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        subjectId: subjectId == null ? this.subjectId : subjectId);