close method

void close()

Implementation

void close() {
  if (hideSuggestionOverlay) {
    return;
  }
  if (_status != ControllerStatus.open) return;
  this._overlayEntry?.remove();
  this._status = ControllerStatus.closed;
}