show method

Future<void> show()

Shows the tooltip.

If shown is already true, calling this method brings the tooltip it controls to the top.

This method should typically not be called while the widget tree is being rebuilt.

Implementation

Future<void> show() async {
  _overlay.show();
  await _animation.forward();
  notifyListeners();
}