muteConvo method
Implementation
Future<core.XRPCResponse<MuteConvoOutput>> muteConvo({
required String convoId,
}) async =>
await _ctx.post(
ns.chatBskyConvoMuteConvo,
body: {
'convoId': convoId,
},
to: MuteConvoOutput.fromJson,
);