call method

BookmarksProvider call({
  1. BookmarkKind? filter,
})

All bookmarks for the current user, newest first. Pass filter to scope to one BookmarkKind.

Backed by user_bookmarks (migration 063). RLS scopes the query to the authenticated user — no extra filter needed.

Copied from bookmarks.

Implementation

BookmarksProvider call({BookmarkKind? filter}) {
  return BookmarksProvider(filter: filter);
}