url property

String? get url

The absolute URL that this download initiated from, before any redirects.

Implementation

String? get url => _wrapped.url;
set url (String? v)

Implementation

set url(String? v) {
  _wrapped.url = v;
}