deleteOwnReaction method
Implementation
Future deleteOwnReaction(
String channelId, {
required String messageId,
required String emoji,
}) {
var endp = '/channels/$channelId/messages/$messageId/reactions/$emoji/@me';
return _http.request(endp, converter: _http.asNull, method: 'delete');
}