close method

void close ()

Removes the Tooltip from the overlay

Implementation

void close() {
  if (onClose != null) {
    onClose();
  }

  _ballonOverlay.remove();
  _backGroundOverlay.remove();
  isOpen = false;
}