appBskyUnspeccedSearchActorsSkeleton function

Future<XRPCResponse<UnspeccedSearchActorsSkeletonOutput>> appBskyUnspeccedSearchActorsSkeleton({
  1. required String q,
  2. String? viewer,
  3. bool? typeahead,
  4. int? limit,
  5. String? cursor,
  6. required ServiceContext $ctx,
  7. Map<String, String>? $headers,
  8. Map<String, String>? $unknown,
})

Backend Actors (profile) search, returns only skeleton.

Implementation

Future<XRPCResponse<UnspeccedSearchActorsSkeletonOutput>>
appBskyUnspeccedSearchActorsSkeleton({
  required String q,
  String? viewer,
  bool? typeahead,
  int? limit,
  String? cursor,
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.appBskyUnspeccedSearchActorsSkeleton,
  headers: $headers,
  parameters: {
    ...?$unknown,
    'q': q,
    if (viewer != null) 'viewer': viewer,
    if (typeahead != null) 'typeahead': typeahead,
    if (limit != null) 'limit': limit,
    if (cursor != null) 'cursor': cursor,
  },
  to: const UnspeccedSearchActorsSkeletonOutputConverter().fromJson,
);