onFocus method

void onFocus(
  1. FocusEvent event
)

Implementation

void onFocus(html.FocusEvent event) {
  event.preventDefault();
  hasFocus = true;
  _focusController.add(event);
}