listNotifications method

Future<XRPCResponse<NotificationListNotificationsOutput>> listNotifications({
  1. List<String>? reasons,
  2. int? limit,
  3. bool? priority,
  4. String? cursor,
  5. DateTime? seenAt,
  6. Map<String, String>? $headers,
  7. Map<String, String>? $unknown,
})

Enumerate notifications for the requesting account. Requires auth.

Implementation

Future<XRPCResponse<NotificationListNotificationsOutput>> listNotifications({
  List<String>? reasons,
  int? limit,
  bool? priority,
  String? cursor,
  DateTime? seenAt,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyNotificationListNotifications(
  reasons: reasons,
  limit: limit,
  priority: priority,
  cursor: cursor,
  seenAt: seenAt,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);