Accuracy property

double? get Accuracy
Gets or sets the location accuracy.

Implementation

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

Implementation

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