close method
dynamic
close()
关闭悬浮窗
Implementation
close() {
if (!_isShowing) return;
_overlayEntry.remove();
_isShowing = false;
_notifyClose();
}
关闭悬浮窗
close() {
if (!_isShowing) return;
_overlayEntry.remove();
_isShowing = false;
_notifyClose();
}