showPopup property
bool
get
showPopup
Implementation
bool get showPopup => _showPopup && !disabled;
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);
}
}