appBskyNotificationPutPreferences function
Set notification-related preferences for an account. Requires auth.
Implementation
Future<XRPCResponse<EmptyData>> appBskyNotificationPutPreferences({
required bool priority,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.post(
ns.appBskyNotificationPutPreferences,
headers: {'Content-type': 'application/json', ...?$headers},
body: {...?$unknown, 'priority': priority},
);