listNotifications method
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,
);