Annotation property

String? get Annotation
Gets or sets the Location Annotation.

Implementation

String? get Annotation => this._annotation;
set Annotation (String? value)

Implementation

set Annotation(String? value) {
  if (this.CanSetFieldValue(this._annotation, value)) {
    this._annotation = value;
    this.Changed();
  }
}