deleteAllReaction method

Future deleteAllReaction(
  1. String channelId,
  2. String messageId, {
  3. String? emoji,
})

Implementation

Future deleteAllReaction(
  String channelId,
  String messageId, {
  String? emoji,
}) {
  var endp = '/channels/$channelId/messages/$messageId/reactions';
  if (emoji != null) {
    endp += '/$emoji';
  }
  return _http.request(endp, converter: _http.asNull, method: 'delete');
}