ContentLocation property
String?
get
ContentLocation
Implementation
String? get ContentLocation => this._contentLocation;
set
ContentLocation
(String? value)
Implementation
set ContentLocation(String? value) {
if (CanSetFieldValue(this._contentLocation, value)) {
this._contentLocation = value;
this.Changed();
}
}