limit property
int?
get
limit
The maximum number of matching DownloadItem returned. Defaults to 1000. Set to 0 in order to return all matching DownloadItem. See search for how to page through results.
Implementation
int? get limit => _wrapped.limit;
set
limit
(int? v)
Implementation
set limit(int? v) {
_wrapped.limit = v;
}