deselectAnnotation method
Deselects the given annotation.
Implementation
void deselectAnnotation(Annotation annotation) {
if (_annotations.contains(annotation)) {
_annotation = annotation;
_notifyPropertyChangedListeners(property: 'deselectAnnotation');
_annotation = null;
}
}