appBskyUnspeccedSearchActorsSkeleton function
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,
);