chatBskyConvoDeleteMessageForSelf function
Implementation
Future<XRPCResponse<DeletedMessageView>> chatBskyConvoDeleteMessageForSelf({
required String convoId,
required String messageId,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.chatBskyConvoDeleteMessageForSelf,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'convoId': convoId, 'messageId': messageId},
to: const DeletedMessageViewConverter().fromJson,
);