dismiss property

  1. @Output()
Stream get dismiss

Event which is published when a focus, mouseup, or click occurs outside of the element.

Implementation

@Output()
Stream get dismiss =>
    _dismissEvents.where((_) => _autoDismissable && !_ignoreEvents);