leaveConvo method
Implementation
Future<core.XRPCResponse<LeaveConvoOutput>> leaveConvo({
required String convoId,
}) async =>
await _ctx.get(
ns.chatBskyConvoLeaveConvo,
parameters: {
'convoId': convoId,
},
to: LeaveConvoOutput.fromJson,
);