appBskyGraphMuteActorList function

Future<XRPCResponse<EmptyData>> appBskyGraphMuteActorList({
  1. required AtUri list,
  2. required ServiceContext $ctx,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

Creates a mute relationship for the specified list of accounts. Mutes are private in Bluesky. Requires auth.

Implementation

Future<XRPCResponse<EmptyData>> appBskyGraphMuteActorList({
  required AtUri list,
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.post(
  ns.appBskyGraphMuteActorList,
  headers: {'Content-type': 'application/json', ...?$headers},
  body: {...?$unknown, 'list': list.toString()},
);