state property

State? get state

Indicates whether the download is progressing, interrupted, or complete.

Implementation

State? get state => _wrapped.state?.let(State.fromJS);
set state (State? v)

Implementation

set state(State? v) {
  _wrapped.state = v?.toJS;
}