getListMutes method

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

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

Implementation

Future<XRPCResponse<GraphGetListMutesOutput>> getListMutes({
  int? limit,
  String? cursor,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyGraphGetListMutes(
  limit: limit,
  cursor: cursor,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);