comAtprotoServerListAppPasswords function

Future<XRPCResponse<ServerListAppPasswordsOutput>> comAtprotoServerListAppPasswords({
  1. required ServiceContext $ctx,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

List all App Passwords.

Implementation

Future<XRPCResponse<ServerListAppPasswordsOutput>>
comAtprotoServerListAppPasswords({
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.comAtprotoServerListAppPasswords,
  headers: $headers,
  parameters: {...?$unknown},
  to: const ServerListAppPasswordsOutputConverter().fromJson,
);