handleBlur method

void handleBlur(
  1. FocusEvent event
)

Implementation

void handleBlur(html.FocusEvent event) {
  _onInputBlur.add(null);

  _isFocused = false;
  if (!showPopup || !hasOptions) {
    _onBlur.add(null);
  }
}