appBskyUnspeccedGetSuggestedUsers function
Get a list of suggested users
Implementation
Future<XRPCResponse<UnspeccedGetSuggestedUsersOutput>>
appBskyUnspeccedGetSuggestedUsers({
String? category,
int? limit,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyUnspeccedGetSuggestedUsers,
headers: $headers,
parameters: {
...?$unknown,
if (category != null) 'category': category,
if (limit != null) 'limit': limit,
},
to: const UnspeccedGetSuggestedUsersOutputConverter().fromJson,
);