listActivitySubscriptions method

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

Enumerate all accounts to which the requesting account is subscribed to receive notifications for. Requires auth.

Implementation

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