showAllAnnotations method
void
showAllAnnotations()
Implementation
void showAllAnnotations() {
runInAction(() {
for (final annotation in _annotations.values) {
annotation.isVisible = true;
}
});
}