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