close method

dynamic close()

关闭悬浮窗

Implementation

close() {
  if (!_isShowing) return;
  _overlayEntry.remove();
  _isShowing = false;
  _notifyClose();
}