searchStarterPacks method

Future<XRPCResponse<SearchStarterPacksOutput>> searchStarterPacks({
  1. required String q,
  2. int? limit,
  3. String? cursor,
  4. Map<String, String>? $header,
})

Implementation

Future<core.XRPCResponse<SearchStarterPacksOutput>> searchStarterPacks({
  required String q,
  int? limit,
  String? cursor,
  Map<String, String>? $header,
}) async =>
    await _ctx.get(
      headers: $header,
      ns.appBskyGraphSearchStarterPacks,
      parameters: {
        'q': q,
        'limit': limit,
        'cursor': cursor,
      },
      to: SearchStarterPacksOutput.fromJson,
    );