minLabel property
Implementation
@JsonKey(includeToJson: false, includeFromJson: false)
String? get minLabel => minAnnotation?.annotation;
set
minLabel
(String? newLabel)
Implementation
set minLabel(String? newLabel) {
if (newLabel != null) {
minimumAnnotation = newLabel; // _setAnnotationLabel
} else {
if (minAnnotation != null) {
annotations.remove(minAnnotation);
}
}
}