selectAnnotation$2 method
      
void
selectAnnotation$2(
    
- MLNAnnotation annotation, {
- required bool moveIntoView,
- required bool animateSelection,
- ObjCBlock<Void Function()> ? completionHandler,
:nodoc: Selects an annotation and displays its callout view with an optional completion handler. This method should be considered "alpha" and as such is subject to change.
@param annotation The annotation object to select.
@param moveIntoView If the annotation is not visible (or is partially visible) and is of type
MLNPointAnnotation, the map is panned so that the annotation and its callout are brought into
view. The annotation is not centered within the viewport.
@param animateSelection If YES, the annotation's selection state and callout view's presentation
are animated.
@param completion The block executed after the animation finishes.
Implementation
void selectAnnotation$2(MLNAnnotation annotation, {required bool moveIntoView,required bool animateSelection,objc.ObjCBlock<ffi.Void Function()>? completionHandler}) {
_objc_msgSend_2nhnqw(this.ref.pointer, _sel_selectAnnotation_moveIntoView_animateSelection_completionHandler_, annotation.ref.pointer, moveIntoView, animateSelection, completionHandler?.ref.pointer ?? ffi.nullptr);
}