Uri property

String? get Uri
Gets or sets the location Uri.

Implementation

String? get Uri => this._uri;
set Uri (String? value)

Implementation

set Uri(String? value) {
  if (this.CanSetFieldValue(this._uri, value)) {
    this._uri = value;
    this.Changed();
  }
}