getSuggestionsSkeleton method

Future<XRPCResponse<SuggestionsSkeleton>> getSuggestionsSkeleton({
  1. String? viewer,
  2. int? limit,
  3. String? cursor,
})

Implementation

Future<core.XRPCResponse<SuggestionsSkeleton>> getSuggestionsSkeleton({
  String? viewer,
  int? limit,
  String? cursor,
}) async =>
    await _ctx.get(
      ns.appBskyUnspeccedGetSuggestionsSkeleton,
      parameters: {
        'viewer': viewer,
        'limit': limit,
        'cursor': cursor,
      },
      to: SuggestionsSkeleton.fromJson,
    );