handleAnimationInterruptions method

void handleAnimationInterruptions(
  1. MapEvent event
)
inherited

Implementation

void handleAnimationInterruptions(MapEvent event) {
  if (_isListeningForInterruptions == false) {
    //Do not handle animation interruptions if not listening
    return;
  }
  closeDoubleTapController(event.source);
  closeFlingAnimationController(event.source);
}