close method
Removes the Tooltip from the overlay
Implementation
void close() {
if (onClose != null) {
onClose();
}
_ballonOverlay.remove();
_backGroundOverlay.remove();
isOpen = false;
}
Removes the Tooltip from the overlay
void close() {
if (onClose != null) {
onClose();
}
_ballonOverlay.remove();
_backGroundOverlay.remove();
isOpen = false;
}