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