removeMessageReaction function

Future<void> removeMessageReaction(
  1. String messageId,
  2. String reaction
)

Removes the reaction on the message with messageId what was added before messageId - the ID of the message you want to delete reaction of reaction - the reaction you want to remove

Implementation

Future<void> removeMessageReaction(String messageId, String reaction) {
  return updateMessageReactions(messageId, removeReaction: reaction);
}