SearchQuery constructor

SearchQuery({
  1. String? query,
  2. String? url,
  3. String? title,
})

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,
      );