deleteMessageReaction abstract method

Future<ZIMMessageReactionDeletedResult> deleteMessageReaction(
  1. String reactionType,
  2. ZIMMessage message
)

Available sinces: 2.10.0 and above.

Detail description: Delete the reaction made by the local user.

Use cases: Users need to delete the status of a message that has already been stated, which can be done using this method.

Note: Room message reaction is not supported.

Restrictions: You can only use it after logging in. And only supports message statements for single chat and group chat

Related callbacks: If the deletion is successful, the onMessageReactionsChanged callback will be triggered. If the reaction is deleted from the latest message in the conversation, the onConversationChanged callback will be triggered when the addition is successful.

Implementation

Future<ZIMMessageReactionDeletedResult> deleteMessageReaction (
    String reactionType, ZIMMessage message);