close method

void close()

Implementation

void close() {
  if (!_isOpened) return;
  assert(overlayEntry != null);
  overlayEntry!.remove();
  _isOpened = false;
}