show method
void
show()
Shows the tooltip if _canShow
is true, initializing and loading it into
the view it if is not already.
Implementation
void show() {
if (_isShown || !_canShow) return;
_isShown = true;
_maybeLoadTooltip();
_delayedActivate.start();
}