removeReaction method

Future<XRPCResponse<ConvoRemoveReactionOutput>> removeReaction({
  1. required String convoId,
  2. required String messageId,
  3. required String value,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Removes an emoji reaction from a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in that reaction not being present, even if it already wasn't.

Implementation

Future<XRPCResponse<ConvoRemoveReactionOutput>> removeReaction({
  required String convoId,
  required String messageId,
  required String value,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await chatBskyConvoRemoveReaction(
  convoId: convoId,
  messageId: messageId,
  value: value,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);