appBskyGraphGetListMutes function

Future<XRPCResponse<GraphGetListMutesOutput>> appBskyGraphGetListMutes({
  1. int? limit,
  2. String? cursor,
  3. required ServiceContext $ctx,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

Enumerates mod lists that the requesting account (actor) currently has muted. Requires auth.

Implementation

Future<XRPCResponse<GraphGetListMutesOutput>> appBskyGraphGetListMutes({
  int? limit,
  String? cursor,
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.appBskyGraphGetListMutes,
  headers: $headers,
  parameters: {
    ...?$unknown,
    if (limit != null) 'limit': limit,
    if (cursor != null) 'cursor': cursor,
  },
  to: const GraphGetListMutesOutputConverter().fromJson,
);