handleBlur method

void handleBlur(
  1. FocusEvent event
)

Implementation

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

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