openBookmark method
- String bookmarkId
Follows the bookmark, opening the page, specified by bookmarkId.
Use createBookmark to create a bookmark.
Implementation
void openBookmark(String bookmarkId) {
Pointer<BufferString> bs = BufferString.fromDartString(bookmarkId);
openBookmarkNative?.call(_sdk, bs);
freeBufferString(bs);
}