isBookmarked property
bool?
get
isBookmarked
Matches if the bookmarked state of the page is equal to the specified value. Requres the bookmarks permission.
Implementation
bool? get isBookmarked => _wrapped.isBookmarked;
set
isBookmarked
(bool? v)
Implementation
set isBookmarked(bool? v) {
_wrapped.isBookmarked = v;
}