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