query property

List<String>? get query

This array of search terms limits results to DownloadItem whose filename or url or finalUrl contain all of the search terms that do not begin with a dash '-' and none of the search terms that do begin with a dash.

Implementation

List<String>? get query =>
    _wrapped.query?.toDart.cast<String>().map((e) => e).toList();
set query (List<String>? v)

Implementation

set query(List<String>? v) {
  _wrapped.query = v?.toJSArray((e) => e);
}