listAppPasswords method

Future<XRPCResponse<ListAppPasswordsOutput>> listAppPasswords({
  1. Map<String, String>? $unknown,
  2. Map<String, String>? $headers,
  3. GetClient? $client,
})

Implementation

Future<XRPCResponse<ListAppPasswordsOutput>> listAppPasswords({
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  GetClient? $client,
}) async =>
    await _ctx.get<ListAppPasswordsOutput>(
      ns.comAtprotoServerListAppPasswords,
      headers: $headers,
      to: const ListAppPasswordsOutputConverter().fromJson,
      client: $client,
    );