muteConvo method

Future<XRPCResponse<MuteConvoOutput>> muteConvo({
  1. required String convoId,
})

Implementation

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