removeReactions method

Future<bool> removeReactions()

Removes all reactions from the current message.

Example:

await ctx.removeReactions();

Implementation

Future<bool> removeReactions() {
  return setReaction([]);
}