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