Accuracy property
double?
get
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();
}
}