minLabel property

  1. @JsonKey(includeToJson: false, includeFromJson: false)
String? get minLabel

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);
    }
  }
}