exists property

bool? get exists

Whether the downloaded file exists;

Implementation

bool? get exists => _wrapped.exists;
set exists (bool? v)

Implementation

set exists(bool? v) {
  _wrapped.exists = v;
}