url property
String?
get
url
The URL of the page or frame that opened the connection. If the sender is in an iframe, it will be iframe's URL not the URL of the page which hosts it.
Implementation
String? get url => _wrapped.url;
set
url
(String? v)
Implementation
set url(String? v) {
_wrapped.url = v;
}