removeReaction method

void removeReaction(
  1. String target,
  2. String msgid,
  3. String emoji
)

Take a reaction back.

Implementation

void removeReaction(String target, String msgid, String emoji) {
  _alive();
  command({'type': 'remove_reaction', 'target': target, 'msgid': msgid, 'emoji': emoji});
}