removeReaction method
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,
);