hideAllAnnotations method
void
hideAllAnnotations()
Implementation
void hideAllAnnotations() {
runInAction(() {
for (final annotation in _annotations.values) {
annotation.setVisible(false);
}
});
}