getMutes method
Enumerates accounts that the requesting account (actor) currently has muted. Requires auth.
Implementation
Future<XRPCResponse<GraphGetMutesOutput>> getMutes({
int? limit,
String? cursor,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyGraphGetMutes(
limit: limit,
cursor: cursor,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);