totalBytesLess property

double? get totalBytesLess

Limits results to DownloadItem whose totalBytes is less than the given integer.

Implementation

double? get totalBytesLess => _wrapped.totalBytesLess;
set totalBytesLess (double? v)

Implementation

set totalBytesLess(double? v) {
  _wrapped.totalBytesLess = v;
}