appBskyGraphMuteThread function
Mutes a thread preventing notifications from the thread and any of its children. Mutes are private in Bluesky. Requires auth.
Implementation
Future<XRPCResponse<EmptyData>> appBskyGraphMuteThread({
required AtUri root,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.appBskyGraphMuteThread,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'root': root.toString()},
);