paused property
bool
get
paused
True if the download has stopped reading data from the host, but kept the connection open.
Implementation
bool get paused => _wrapped.paused;
set
paused
(bool v)
Implementation
set paused(bool v) {
_wrapped.paused = v;
}