show method
Displays the tooltip at the specified x and y-positions.
Implementation
void show(double x, double y) {
if (_painter != null &&
activationMode != ActivationMode.none &&
x != null &&
y != null) {
_painter.show(x, y);
}
}