getPreferences method

Future<XRPCResponse<ActorGetPreferencesOutput>> getPreferences({
  1. Map<String, String>? $headers,
  2. Map<String, String>? $unknown,
})

Get private preferences attached to the current account. Expected use is synchronization between multiple devices, and import/export during account migration. Requires auth.

Implementation

Future<XRPCResponse<ActorGetPreferencesOutput>> getPreferences({
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyActorGetPreferences(
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);