appBskyBookmarkGetBookmarks function
Gets views of records bookmarked by the authenticated user. Requires authentication.
Implementation
Future<XRPCResponse<BookmarkGetBookmarksOutput>> appBskyBookmarkGetBookmarks({
int? limit,
String? cursor,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.appBskyBookmarkGetBookmarks,
headers: $headers,
parameters: {
...?$unknown,
if (limit != null) 'limit': limit,
if (cursor != null) 'cursor': cursor,
},
to: const BookmarkGetBookmarksOutputConverter().fromJson,
);