removeReaction method

dynamic removeReaction(
  1. String messageId,
  2. String reactionId
)

Implementation

removeReaction(String messageId, String reactionId) async {
  try {
    return await api.removeReaction(messageId, reactionId);
  } catch (e) {
    throw e.toString();
  }
}