appBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton function
Future<XRPCResponse<UnspeccedGetOnboardingSuggestedStarterPacksSkeletonOutput> >
appBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton({})
Get a skeleton of suggested starterpacks for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getOnboardingSuggestedStarterPacks
Implementation
Future<XRPCResponse<UnspeccedGetOnboardingSuggestedStarterPacksSkeletonOutput>>
appBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton({
String? viewer,
int? limit,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton,
headers: $headers,
parameters: {
...?$unknown,
if (viewer != null) 'viewer': viewer,
if (limit != null) 'limit': limit,
},
to: const UnspeccedGetOnboardingSuggestedStarterPacksSkeletonOutputConverter()
.fromJson,
);