autoDismiss property

bool get autoDismiss

If set to true, the popup should attempt to close itself when a mouse click or finger tap is detected outside of the bounds of the popup.

Implementation

bool get autoDismiss => _backingMap[#autoDismiss] as bool? ?? false;
set autoDismiss (bool? autoDismiss)

Implementation

set autoDismiss(bool? autoDismiss) {
  _backingMap[#autoDismiss] = autoDismiss;
}