deleteMessageForSelf method
Marks a message as deleted for the viewer, so they won't see that message in future enumerations.
Implementation
Future<XRPCResponse<DeletedMessageView>> deleteMessageForSelf({
required String convoId,
required String messageId,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyConvoDeleteMessageForSelf(
convoId: convoId,
messageId: messageId,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);