totalBytesGreater property

double? get totalBytesGreater

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

Implementation

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

Implementation

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