leaveConvo method
Implementation
Future<XRPCResponse<LeaveConvoOutput>> leaveConvo({
required String convoId,
Map<String, String>? $unknown,
Map<String, String>? $headers,
PostClient? $client,
}) async =>
await _ctx.post<LeaveConvoOutput>(
ns.chatBskyConvoLeaveConvo,
headers: $headers,
body: {
'convoId': convoId,
...?$unknown,
},
to: const LeaveConvoOutputConverter().fromJson,
client: $client,
);