Source property

LocationSource? Source
Gets or sets the location source type.

Implementation

LocationSource? get Source => this._source;
void Source=(LocationSource? value)

Implementation

set Source(LocationSource? value) {
  if (this.CanSetFieldValue(this._source, value)) {
    this._source = value;
    this.Changed();
  }
}