Url property

Uri? Url
Gets or sets the URL this service is bound to.

Implementation

Uri? get Url => this._url;
void 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;
}