Annotation property
String?
get
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();
}
}