sendAnnotationToBack method

void sendAnnotationToBack(
  1. String annotationId
)

Implementation

void sendAnnotationToBack(String annotationId) {
  final annotation = _annotations[annotationId];
  if (annotation != null) {
    final minZIndex = _annotations.values
        .map((a) => a.zIndex.value)
        .fold(0, math.min);
    annotation.setZIndex(minZIndex - 1);
  }
}