onBlur property

  1. @Output('blur')
Stream<void> get onBlur

Fired when this component loses focus.

This stream is fired when:

  1. the underlying material input blurs, if there is no popup and there are subscribers to the blur stream
  2. the suggestions popup closes and there is no focus on the underlying material input

Implementation

@Output('blur')
Stream<void> get onBlur => _onBlur.stream;