updateSeen method

Future<XRPCResponse<EmptyData>> updateSeen({
  1. required DateTime seenAt,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

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