preventCloseOnPressLeft property

  1. @Input.new()
set preventCloseOnPressLeft (bool value)

Whether the popup should be closed on left key press.

Defaults to false.

Implementation

@Input()
set preventCloseOnPressLeft(bool value) {
  _closeOnPressLeft = !value;
}