annotationsSorted property

  1. @JsonKey(includeToJson: false, includeFromJson: false)
List<Annotation> get annotationsSorted

Implementation

@JsonKey(includeToJson: false, includeFromJson: false)
List<Annotation> get annotationsSorted =>
    annotations.sorted((a, b) => a.value.compareTo(b.value));