Uri property

String? Uri
Gets or sets the location Uri.

Implementation

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

Implementation

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