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