Accuracy property

double? Accuracy
Gets or sets the location accuracy.

Implementation

double? get Accuracy => this._accuracy;
void Accuracy=(double? value)

Implementation

set Accuracy(double? value) {
  if (this.CanSetFieldValue(this._accuracy, value)) {
    this._accuracy = value;
    this.Changed();
  }
}