removeUserReactionForChannelItem

abstract suspend fun removeUserReactionForChannelItem(channel: Channel, item: IChannelItem): RainbowResult<IChannelItem>

Remove the user's reaction for a specific item in the channel.

This method allows the user to remove their reaction (like, doubt, fantastic, applause, etc.) for a specific item (post) within the provided channel. After the reaction is removed, the item will no longer have a reaction associated with it from the user.

If no reaction was previously set, this method has no effect.

Return

A RainbowResult containing the updated IChannelItem object with the reaction removed on success. In case of failure, it will contain error details.

Parameters

channel

The Channel object where the item is located.

item

The IChannelItem object representing the item (post) for which the reaction is removed.