unmuteConvo method

Future<XRPCResponse<UnmuteConvoOutput>> unmuteConvo({
  1. required String convoId,
})

Implementation

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