appBskyNotificationUpdateSeen function
Notify server that the requesting account has seen notifications. Requires auth.
Implementation
Future<XRPCResponse<EmptyData>> appBskyNotificationUpdateSeen({
required DateTime seenAt,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.appBskyNotificationUpdateSeen,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'seenAt': iso8601(seenAt)},
);