maxLabel property

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

Implementation

@JsonKey(includeToJson: false, includeFromJson: false)
String? get maxLabel => maxAnnotation?.annotation;
set maxLabel (String? newLabel)

Implementation

set maxLabel(String? newLabel) {
  if (newLabel != null) {
    maximumAnnotation = newLabel; // _setAnnotationLabel
  } else {
    if (maxAnnotation != null) {
      annotations.remove(maxAnnotation);
    }
  }
}