deleteMessageForSelf method
Implementation
Future<XRPCResponse<DeletedMessageView>> deleteMessageForSelf({
required String convoId,
required String messageId,
Map<String, String>? $unknown,
Map<String, String>? $headers,
PostClient? $client,
}) async =>
await _ctx.post<DeletedMessageView>(
ns.chatBskyConvoDeleteMessageForSelf,
headers: $headers,
body: {
'convoId': convoId,
'messageId': messageId,
...?$unknown,
},
to: const DeletedMessageViewConverter().fromJson,
client: $client,
);