appBskyGraphMuteActorList function
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()},
);