canResume property

bool get canResume

True if the download is in progress and paused, or else if it is interrupted and can be resumed starting from where it was interrupted.

Implementation

bool get canResume => _wrapped.canResume;
set canResume (bool v)

Implementation

set canResume(bool v) {
  _wrapped.canResume = v;
}