updateSeen method
Notify server that the requesting account has seen notifications. Requires auth.
Implementation
Future<XRPCResponse<EmptyData>> updateSeen({
required DateTime seenAt,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyNotificationUpdateSeen(
seenAt: seenAt,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);