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