getBookmarks method

Future<XRPCResponse<BookmarkGetBookmarksOutput>> getBookmarks({
  1. int? limit,
  2. String? cursor,
  3. Map<String, String>? $headers,
  4. Map<String, String>? $unknown,
})

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