appBskyUnspeccedGetSuggestedUsers function

Future<XRPCResponse<UnspeccedGetSuggestedUsersOutput>> appBskyUnspeccedGetSuggestedUsers({
  1. String? category,
  2. int? limit,
  3. required ServiceContext $ctx,
  4. Map<String, String>? $headers,
  5. Map<String, String>? $unknown,
})

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