show method
Shows the popover.
If already shown, calling this method brings the popover 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();
}