SearchQuery constructor
Implementation
SearchQuery({
/// A string of words and quoted phrases that are matched against bookmark
/// URLs and titles.
String? query,
/// The URL of the bookmark; matches verbatim. Note that folders have no
/// URL.
String? url,
/// The title of the bookmark; matches verbatim.
String? title,
}) : _wrapped = $js.SearchQuery(
query: query,
url: url,
title: title,
);