Url property
Uri?
get
Url
Implementation
Uri? get Url => this._url;
set
Url
(Uri? value)
Implementation
set Url(Uri? value) {
// If Url property is set to non-null value, Domain property is set to host portion of Url.
if (value != null) {
this._domain = value.host;
}
this._url = value;
}