getBookmarks method
Gets views of records bookmarked by the authenticated user. Requires authentication.
Implementation
Future<XRPCResponse<BookmarkGetBookmarksOutput>> getBookmarks({
int? limit,
String? cursor,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyBookmarkGetBookmarks(
limit: limit,
cursor: cursor,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);