handleFocus method

void handleFocus(
  1. FocusEvent event
)

Implementation

void handleFocus(html.FocusEvent event) {
  if (_isFocused) return;

  showPopup = true;
  _onFocus.add(event);
  _isFocused = true;
}