createBookmark method
Creates a private bookmark for the specified record. Currently, only app.bsky.feed.post
records are supported. Requires authentication.
Implementation
Future<XRPCResponse<EmptyData>> createBookmark({
required AtUri uri,
required String cid,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await appBskyBookmarkCreateBookmark(
uri: uri,
cid: cid,
$ctx: _ctx,
$headers: $headers,
$unknown: $unknown,
);