showPopup property

bool get showPopup

Implementation

bool get showPopup => _showPopup && !disabled;
  1. @Input()
set showPopup (bool value)

Used to control the visibility of the suggestion popup.

Implementation

@Input()
set showPopup(bool value) {
  if (value != _showPopup) {
    _showPopup = value;
    _showPopupController.add(_showPopup);
    _updateItemActivation(popupOpening: true);
  }

  if (!_showPopup && !_isFocused) {
    _onBlur.add(null);
  }
}