muteThread method

Future<XRPCResponse<EmptyData>> muteThread({
  1. required AtUri root,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

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,
);