muteThread method
Mutes a thread preventing notifications from the thread and any of its children. Mutes are private in Bluesky. Requires auth.
Implementation
Future<XRPCResponse<EmptyData>> muteThread({
required AtUri root,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphMuteThread(
root: root,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);