muteActor method
Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth.
Implementation
Future<XRPCResponse<EmptyData>> muteActor({
required String actor,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphMuteActor(
actor: actor,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);