putPreferences method

Future<XRPCResponse<EmptyData>> putPreferences({
  1. required bool priority,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Set notification-related preferences for an account. Requires auth.

Implementation

Future<XRPCResponse<EmptyData>> putPreferences({
  required bool priority,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyNotificationPutPreferences(
  priority: priority,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);