getUnreadCount method
Count the number of unread notifications for the requesting account. Requires auth.
Implementation
Future<XRPCResponse<NotificationGetUnreadCountOutput>> getUnreadCount({
bool? priority,
DateTime? seenAt,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyNotificationGetUnreadCount(
priority: priority,
seenAt: seenAt,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);