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