getUnreadCount method

Future<XRPCResponse<NotificationGetUnreadCountOutput>> getUnreadCount({
  1. bool? priority,
  2. DateTime? seenAt,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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