hide method

void hide()

Hides the popover.

Implementation

void hide() {
  if (!_isOpen) return;
  _isOpen = false;
  notifyListeners();
}