getUnreadCount method
Implementation
Future<core.XRPCResponse<Count>> getUnreadCount({
bool? priority,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.appBskyNotificationGetUnreadCount,
headers: headers,
parameters: {
'priority': priority,
},
to: Count.fromJson,
);