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