show method
void
show()
Implementation
void show() {
Future.delayed(Duration.zero, () {
if (_overlayEntry == null) {
_overlayEntry = _buildOverlay();
Overlay.of(_context)!.insert(_overlayEntry!);
}
});
}